WAP using python to find area of circle
Answers
Answered by
2
Explanation:
PI = 3.14
r = float(input('Enter the radius of the circle :'))
area = PI * r * r
print("Area of the circle is : %.2f" %area)
#method 2
import math
r = float(input('Enter the radius of the circle :'))
area = math.pi * r * r
print("Area of the circle is : %.2f"
HOPE IT HELPS YOU........✌️
PLEASE MARK ME AS A BRAINLIST AND THANK MY ANSWER ❤️
❤️FOLLOW ME❤️
Answered by
2
Answer:
Hey this is in python...
r = float(input("Enter radius of circle: "))
a = 3.14*r*r
print("Area of circle = ", a)
# HOPE THIS HELPS!!
Similar questions