Quick actions

cmd+k|ctrl+k

Navigation

Languages

if statement

Snippet info

Language

Python

Visibility

public

Author

briankiptoo

Created

2025-12-28T06:41:09.394462Z

Updated

2025-12-28T06:41:58.529428Z

magican = False
expert = True
if magican and expert:
	print("you are a master magican")
elif magican and not expert:
	print('at least you are close')
elif not magican:
	print('no hope')
INFO