+ 1
Game Simulator
I’m trying to make a game simulator .So far I made it where my teams can randomly be selected and decide who’s the winner. I want to loop my code and also do the same for my other teams. Do anybody have suggestions on how to do that? https://code.sololearn.com/cIL7C1UcyvrW/?ref=app
1 Odpowiedź
0
Before the while statement initialize a counter variable:
i = 0
Then every time the while statement is ran, increment that by 1:
i += 1
Append the break after an if statement to compare if we have reached a specific value:
if i == 16: break