Write a Python program to find the area of Rectangle.
IDE: Visual Studio Code ( VSC ). Present: go2collage.
Download hole Program / Project code, by clicking following link:
Programming Code:
# Baisc Python Program
# Area of Rectangle
l = float(input("Enter length of Rectangle: "))
w = float(input("Enter width of Rectangle: "))
area = l * w # formula of area of Rectangle
print("Area of Rectangle is: ", area)
Output:
0 Comments