This commit is contained in:
cmitchell2301 2025-12-14 19:22:58 -05:00
parent 195a455032
commit fc26ebd5f8
5 changed files with 25 additions and 19 deletions

View file

@ -1,9 +0,0 @@
import math
PI = math.pi
radius = float(input("Enter the radius of a circle "))
area = PI * radius**2
print(f"The area is {area}")