Logical operators let us combine multiple conditions:
The Cyclone is a roller coaster at Coney Island. To ride, you must be at least 137 cm tall.
age = 12
height = 140
if age >= 10 and height >= 120:
print('You can ride!')
else:
print('Sorry, not yet.')
Run your code
Enjoy the ride!