Write a Program) to Enter length and breadth of rectangle room and display the result of its Area and perimeter. [hint: A = L x B ; p= 2(L+B)]
Answers
Answered by
4
Answer:
l = int(input("Enter a length"))
b = int(input("Enter a breadth "))
print(f"The area is {l*b}" and the perimeter is {2*(l+b)})
Explanation:
Answers in Python
Similar questions
English,
1 day ago
Social Sciences,
1 day ago
English,
2 days ago
Math,
2 days ago
English,
8 months ago
Social Sciences,
8 months ago