Write a Python program to find area of circle and square
Answers
Answered by
3
Answer:
The Python area of a circle is number of square units inside the circle. Standard formula to calculate the area of a circle is: A=πr².
Answered by
10
Answer:
Area for circle in python :
r = float(input("Enter the radius of the circle: "))
area = math.pi* r * r
print("%.2f" %area)
Similar questions