# Python Program to find Area of a Rectangle
length = float(input('Please Enter the Width of a Rectangle: '))
breadth = float(input('Please Enter the Height of a Rectangle: '))
Area = length*breadth
print(Area)
OR
# Python Program to find Area of a Rectangle
length = 10
breadth = 20
Area = length*breadth
print(Area)
Study more about Python at Python Class 10