Write a program in Python that accepts sides of a rectangle by the user and prints theperimeter of the rectangle.
need quickly
Answers
Answered by
0
Answer:
length=float(input("enter length:"))
breadth=float(input("enter breadth:"))
perimeter=2(length+breadth)
print("perimeter is",perimeter)
Similar questions