Problem Link: CodeChef: Practical coding for everyone
Learning course: Learn Python
My code
# Update the '_' below to solve the problem
print(11 * 13) # Area of the rectangle
print( '*' (11 + 13)) # Perimeter of the rectangle
Problem Link: CodeChef: Practical coding for everyone
Learning course: Learn Python
# Update the '_' below to solve the problem
print(11 * 13) # Area of the rectangle
print( '*' (11 + 13)) # Perimeter of the rectangle
print(11 * 13) # Area of the rectangle
print( 2* (11 + 13)) # Perimeter of the rectangle=2*(length+width)
print(11*13) # Area of the rectangle
print(2*(11+ 13)) # Perimeter of the rectangle
print(11 * 13) # Area of the rectangle
print( 2* (11 + 13)) # Perimeter of the rectangle=2*(length+width)