Find the area & perimeter of rectangle with user-interface in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code l=int(input(“Enter length : “))w=int(input(“Enter width : “))area=l*wperi=2*(l+w)print(“Area of rectangle : “, area)print(“Perimeter of rectangle : “, peri) Output Enter length : 78Enter width : 54Area of rectangle : 4212Perimeter of rectangle : 264 View All Python Programs