if statement
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
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')