0
It wont accept the else text +value thing, how could i make it have text then changing value and then text again?
x = 99 if x == 100: print("Your mana is full") else: print("You have"x"mana.")
2 Respuestas
+ 6
print("You have", x, "mana.")
+ 1
Thanks alot :D