Computer Science, asked by dranjalisinghcom, 8 months ago

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 Anonymous
0

Answer:

length=float(input("enter length:"))

breadth=float(input("enter breadth:"))

perimeter=2(length+breadth)

print("perimeter is",perimeter)

Similar questions