#------------------------------------------------------------------------------ # Circle.py # Computes the area and circumference of a circle given the radius #------------------------------------------------------------------------------ from math import pi as p r = float(input("Enter the radius: ")) area = p*(r**2) circumference = 2*p*r print("The area is: "+str(area)) print("The circumference is: "+str(circumference))