Computer Science, asked by Craftsbymaha, 7 months ago

write a python program to find area of rectangle and area of a square​

Answers

Answered by rohitkhannaa19
7

Answer:

  1. Python Program
  2. width=5.
  3. height=10.
  4. area=width*height.
  5. print("Area of rectangle="+str(area))

Hope its helpful to you pls mark my brainlist

Answered by saidulnayan781
4

Answer:

a = float(input('Enter the rectangle width: '))

b = float(input('Enter the rectangle height: '))

area = a*b

print ("Area =",area)

Explanation:

Similar questions