Wizardry
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
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")