diff --git a/circle_area.py b/circle_area.py index 99d33cb..d111939 100644 --- a/circle_area.py +++ b/circle_area.py @@ -4,5 +4,6 @@ print("This program will calculate the area of a circle.") radius = float(input("What is the circle's radius? ")) - +pi = 314.1592653 area = radius*radius * pi +print (area) \ No newline at end of file