Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Ralph Custodio
- # BSIT II-A
- from math import pi
- radius = float(input("Input the radius of the circle: "))
- area = (pi * radius ** 2)
- print("The area of the circle with radius " + str(radius) + " is: " + str(area))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement