Computer Science, asked by doubts35, 15 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 kumarijyotisp18
7

Answer:

l = 80

b = 60

Perimeter = 2*(l+ b)

print(Perimeter)

Similar questions