Quick actions

cmd+k|ctrl+k

Navigation

Languages

LOGICAL OPERATORS way 1

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-07-01T02:38:14.622744Z

Updated

2026-07-01T02:38:14.622744Z

is_magician = True
is_expert = False

if is_magician and is_expert :
    print('you\'re a master magician')
elif is_magician and is_expert != True :
    print('atleast you\'re getting there')
elif is_magician != True :
    print('you need powers')
INFO