write a program to find the area of a circle
write in python class 9 thanks
Answers
Answered by
1
Answer:
sry I dont know anyways please make brain list
Answered by
1
# Python Program to find Area Of Circle using Radius
PI = 3.14
radius = float(input(' Please Enter the radius of a circle: '))
area = PI * radius * radius
circumference = 2 * PI * radius
print(" Area Of a Circle = area + "sq ms")
print(" Circumference Of a Circle = circumference +"cms")
Similar questions