Math, asked by doubts35, 18 days ago

the following is the python program for finding the area of a rectangle .

l = 80
b = 60
A = l*b
print(A)

now create a program in python
to find perimeter of this rectangle .
[ perimeter = 2 × ( length × breadth) ]

Answers

Answered by geetchauhan1234567
2

Answer:

perimeter = 280

Step-by-step explanation:

perimeter = 2 × ( l + b )

= 2 × ( 80 + 60 )

= 2 × 140

= 280 is your answer

Similar questions