Computer Science, asked by ramsmedicine, 2 months ago

Write a Python program to assign the value 25 to the variable LEN and the value 12 to the
variable BR of the rectangle and then find & display the Area & Perimeter of the rectangle using
appropriate variables.
Variable length = 25 Value
Variable breadth=12 Value
Hint: Area =length x breadth Perimeter= 2(length + breadth)

pls tell me the correct answer I will mark as brainly list if your Ans is correct
do it and send me a screenshot and send it.

Answers

Answered by aj200260
1

Answer:

LEN=25

BR=12

AREA=LEN*BR

PERIMETER=2*(LEN+BR)

print("The area of rectangle is:",AREA)

print("The perimeter of rectangle is:",PERIMETER)

THANK YOU

Similar questions