1num = 0
2num_of_plyrs = 4
3count = 0
4stop = False
5
6while not stop:
7 if count == 4:
8 stop = True
9 if num != num_of_plyrs:
10 num += 1
11 count += 1
12 print("It's Player {0}'s".format(num))
13 elif num == num_of_plyrs:
14 num = 0