Quick actions

cmd+k|ctrl+k

Navigation

Languages

Conditional Logic

Snippet info

Language

Python

Visibility

public

Author

thecloudchiropractor

Created

2025-08-24T10:19:17.911317Z

Updated

2025-08-24T10:19:17.911317Z

is_old = False
is_licensed = False

if is_old:
    print('you are old enough to drive!')
elif is_licensed:
    print('you can drive now!')
else:
    print('you are not of age!')
    
# True or False 
INFO