Skip to content

Instantly share code, notes, and snippets.

@axurright
Last active November 12, 2024 16:49
Show Gist options
  • Select an option

  • Save axurright/35280ecce04f2b3a7a3292668f43b839 to your computer and use it in GitHub Desktop.

Select an option

Save axurright/35280ecce04f2b3a7a3292668f43b839 to your computer and use it in GitHub Desktop.
A simple player counter in Python
def player_count(game_players):
players = ["You", "Me"]
return players
print("Player count: ", player_count(players)
# This possibly doesn't work.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment