Quick actions

cmd+k|ctrl+k

Navigation

Languages

Conditional Logic

Snippet info

Language

Python

Visibility

public

Author

raulciprian.tudor

Created

2026-01-03T19:11:09.505374Z

Updated

2026-01-03T20:07:48.210119Z

is_old = True
is_licenced = True

if is_old and is_licenced:
    print("You are old enough to drive, and you have a licence!")
else:
    print("You are not old enough!")
INFO