Posts by MarceloCarvalho • 1 point
1 post
-
0
votes2
answers160
viewsA: Little Python Combat Game
I added the monster’s turn to the game from random import randint hpm = 10 #Hp monstro hpg = 10 # Hp guerreiro while hpm > 0 and hpg > 0: d = input('Deseja atacar o monstro (S/N) ? ') if(d ==…
pythonanswered MarceloCarvalho 1