git_practice/rectangle01.py

7 lines
89 B
Python

length = 4
width = 3
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)