create a programme in python to find the perimeter of this rectangle (perimeter=2×(length+breadth))
answer it frnds
Answers
Answered by
2
Explanation:
# Python Program to find Perimeter of a Rectangle using length and width
length = float(input('Please Enter the Length of a Triangle: '))
width = float(input('Please Enter the Width of a Triangle: '))
# calculate the perimeter
perimeter = 2 * (length + width)
print("Perimeter of a Rectangle using", length, "and", width, " = ", perimeter)
Similar questions