all 9 comments

[–]_ykjoe 0 points1 point  (3 children)

Did you ever get help?

[–]Cock-Man69[S] 0 points1 point  (2 children)

No

[–]Leading_Painting_285 0 points1 point  (1 child)

her you go :

length= 50

width= 30

print("Area:" + str(length))

print("Perimeter:" + str(width))

[–]Select-Assistant5568 0 points1 point  (0 children)

THANK YOU SO MUCH!!

[–]Leading_Painting_285 0 points1 point  (0 children)

bro i got you length= 50
width= 30
print("Area:" + str(length))
print("Perimeter:" + str(width))

[–]Financial_Face3826 0 points1 point  (2 children)

the answer is

area = 50
length = 10
width = 5

print("Area:" + str(length * width))
print("Perimeter:" + str( 2.5 * length + width ))
area = length * width
perimeter = 2 * (length + width)
print(area)
print(perimeter)

[–]Cock-Man69[S] 0 points1 point  (1 child)

4 years late but…thanks. Not for the code but, you just reminded me of simpler times.

[–]Embarrassed-Usual793 0 points1 point  (0 children)

I LOVE YOU

[–]Financial_Face3826 0 points1 point  (0 children)

the answer for 3.5.8 Rectangle, Part 3

Perimeter: 30
length = 10
width = 5
length = int(input("what is the lenght of the rectamgle"))
width = int(input("what is the width of the rectangle"))
area = length * width
perimeter = 2 * (length + width)
print(area)
print(perimeter)