Can anyone pls tell answer of this question
Attachments:
Answers
Answered by
0
Answer:
Sorry idk...
But keep trying
Answered by
12
Answer:
# Python Program to find Area of a Rectangle using length and width
def area_of_Rectangle(length, width):
return length * width
length = float(input('Please Enter the Length of a Triangle: '))
width = float(input('Please Enter the Width of a Triangle: '))
# calculate the area of a Rectangle
area = area_of_Rectangle(length, width)
print("The Area of a Rectangle using", length, "and", width, " = ", area)
Please Enter the Length of a Triangle: 125
Please Enter the Width of a Triangle: 65
The Area of a Rectangle using 125.0 and 65.0 = 8125.0
Explanation:
PLEASE MARK ME AS THE BRAINLIEST OR LIKE MY ANSWER!!!
Similar questions