Files
lab_names/circle_area.py
jbayati 33bdad566f a name is what we call something while a value is a definition
we need to know the difference in our everyday life because it's in everyday language.
2025-09-23 09:31:19 -04:00

11 lines
218 B
Python

# circle_area.py
# --------------
# By MWC Contributors
print("This program will calculate the area of a circle.")
radius = float(input("What is the circle's radius? "))
area = 3.141592653*radius*radius
print(area
)