Write A program that except the radius of a circle and print it’s area
Answers
Answered by
1
Answer:
Answer
from math import pi.
r = float(input ("Input the radius of the circle : "))
print ("The area of the circle with radius " + str(r) + " is: " + str(pi * r**2))
HOPE THIS HELPS YOU BUDDY PLEASE MARK ME THE BRANILIEST AND FOLLOW ME.
Similar questions