# circle_area.py # -------------- # By MWC Contributors import math print("This program will calculate the area of a circle.") radius = float(input("What is the circle's radius? ")) r = round(((math.pi)*(radius)**2), 2) r =str(r) Area = "Area of the circle = " + r print(Area)