Skip to content

Instantly share code, notes, and snippets.

@lancereinsmith
Created December 13, 2020 19:36
Show Gist options
  • Save lancereinsmith/abb0fd2903de2bdf40fd511233e9fb7c to your computer and use it in GitHub Desktop.
Save lancereinsmith/abb0fd2903de2bdf40fd511233e9fb7c to your computer and use it in GitHub Desktop.
class Player(object):
def __init__(self, player_name: str, starting_bank: int, color_key: int) -> None:
self.player_name = player_name
self.bank = starting_bank
self.color = c[color_key % len(c)]
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment