git_practice/rectangle01.py

7 lines
89 B
Python
Raw Normal View History

2024-12-21 20:36:23 -05:00
length = 4
width = 3
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)