Computer Science, asked by shaikhoney217, 9 months ago

write a program
to calculate Area and
perimeter of rectangle.
[ length:50 Breadth 20 Area: 100
[
perimeter:140)​

Answers

Answered by gaganadithyareddy9
4

Answer:

Hey! This is my code to calculate area and perimeter of rectangle in python

length = 50

breadth = 20

print("Area of rectangle: ", length*breadth)

print("Perimeter of rectangle: ", 2(length+breadth))

HOPE IT HELPS!!

Answered by khushi1381
0

Answer:

length 50 breadth 20 now you solve the problem

Similar questions