Python Program to Find Area of Semicircle

Python Program to Find Area of Semicircle

Write Python Program to Find Area of Semicircle

# Python Program to Find Area of Semicircle

PI = 3.14
radius = 3

#Formula to Find Area of Semicircle
area = (PI * radius * radius) / 2

print("Area of semicircle having radius ", radius, " is :--> ", area)

Output:

Area of semicircle having radius  3  is :-->  14.129999999999999