0
Hello friends. Is anyone know how to switch players in a game and put individual score to players ?
Word guessing game with three players
1 Odpowiedź
+ 1
It will be better if you share your code here..
You can try this...
Just make these global variables
player=1
score1=0
score2=0
And add this part where you required...
if player==1:
score1+=1
player=2
else:
player=1
score2+=1