Help me in solving PYTH09 problem

My issue

My code

# Update the '_' below to solve the problem

print(__ * __)          # Area of the rectangle

print(_ * (__ + __))    # Perimeter of the rectangle

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

print(23) where 2 is length and 3 is breadth,formula is lb i.e means l=2,
print(2*(2+3)) #perimeter of rectangle is 2*(l+b)

1 Like