power=input("How much power would you like to have?(power goes from 1 to a 100)")
while power > 100 or power < 0:
if power < 100 or power > 0:
break
else:
power=input("How much power would you like to have?")
when i try to run this part of a code it keeps showing an error message that looks like: while puissance > 100 or puissance < 0: TypeError: '>' not supported between instances of 'str' and 'int'