write program Python needs an input representing the radius of a circle it calculate the surface of the circle , then print the result of surface
Answers
Answered by
0
from math import pi r = float(input ("Input the radius of the circle : ")) print ("The area of the circle
plz mark me as BRAINLIEST plz plz plz
Answered by
0
r=int(input ("enter radius"))
area=3.14*r*r
print(area)
then,run program
Similar questions