Python Program to Find the Area of Circle
Write Python Program to Find the Area of Circle
# Python Program to Find the Area of Circle PI = 3.14 #get the value of radius radius = float(input("Enter radius of circle :--> ")) area = PI * radius * radius print("A area of circle is :--> ",area)
Output:
Enter radius of circle :--> 5
A area of circle is :--> 78.5