My Answer:
radius = float(input("Enter a radius for the circle: "))
area = math.pi * radius ** 2
circumference = 2 * math.pi * radius
print(f"The area of the circle is {area:.2f}")
print(f"The circumference of the circle is {circumference:.2f}")