The code I am currently using,
if p == players[1]:
p = players[2]
elif p == players[2]:
p = players[3]
elif p == players[3]:
p = players[4]
elif p == players[4]:
p = players[5]
else:
# et cetera
p holds the current player. Everyone playing is in a list called players. I did this once with a modulo but now I can't remember how.