is_magician = False
is_expert = True
#chek if magician AND expert: "you are a master magician"
if is_magician and is_expert:
print:('you are a master magician')
#check if magician but not expert:"at least you're getting there"
else:
print: ('at least you're getting there')
#if you're not a magician: "YOu need magic powers"