I am having trouble with this loop, I have been teaching my self for two days now and I'm in a pinch. I have tried googling the answer but it's not helping me with this specific situation.
In Python, I am trying to prompt a user to pick three options and loop the question if one of the options is not selected.
My code is:
power = input("pick a super power: strength, pyrokenisis, or speed--- ")
while power == "strength" or "pyrokenisis" or "speed":
print("nice")
break
else:
print("try again")