211. Write a python programme to find the area and perimeter of a
rectangular field.
Answers
Answered by
3
Answer:
l=int(input("Length : "))
w=int(input("Width : "))
area=l*w
perimeter=2*(l+w)
print("Area of Rectangle : ",area)
print("Perimeter of Rectangle : ",perimeter)
Explanation:
Similar questions
Math,
1 month ago
Math,
1 month ago
Political Science,
1 month ago
Biology,
2 months ago
Science,
2 months ago
Math,
9 months ago
Environmental Sciences,
9 months ago
Biology,
9 months ago