Quick actions

cmd+k|ctrl+k

Navigation

Languages

Conditional Logic

Snippet info

Language

Python

Visibility

public

Author

glot.rotunda236

Created

2026-01-14T20:26:14.059615Z

Updated

2026-01-14T20:26:14.059615Z

is_old = True
is_licenced = False

if is_old and is_licenced:
    print('You are allowed to drive!')

else:
    print("Get tf out of the car!")
    
INFO