Last active
November 12, 2024 16:49
-
-
Save axurright/35280ecce04f2b3a7a3292668f43b839 to your computer and use it in GitHub Desktop.
A simple player counter in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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