Quick actions

cmd+k|ctrl+k

Navigation

Languages

Wizardry

Snippet info

Language

Python

Visibility

public

Author

shigeotoga

Created

2026-08-05T11:47:59.795284Z

Updated

2026-08-05T11:52:01.054511Z

is_magician = True
is_expert = False

if is_magician:
    if is_expert:
        print("You are a master magician")
    else:
        print("At least you're getting there")
else:
    print("You need magic powers")
INFO