Computer Science, asked by khanabadoshikigai, 2 days ago

WAP in Python to enter the dimensions of a rectangle and calculate its area.

Answers

Answered by NotThareesh
2

Answer:

Here's your answer.

Explanation:

def area():

  length = int(input("Length: "))

  breadth = int(input("Breadth: "))

  print(f"Area is {l*b}")

area()

Similar questions