Skip to content

Instantly share code, notes, and snippets.

@AndreasArne
Created February 6, 2023 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreasArne/8e4bb6d5ca5392d4c9a763346c7e02dd to your computer and use it in GitHub Desktop.
Save AndreasArne/8e4bb6d5ca5392d4c9a763346c7e02dd to your computer and use it in GitHub Desktop.
Exempel på dict som kan användas för att skapa en ScoreBoard
a_dict = {
"Ones": 3,
"Twos": -1,
"Threes": -1,
"Fours": 0,
"Fives": -1,
"Sixes": 12,
"Three Of A Kind": -1,
"Four Of A Kind": -1,
"Full House": -1,
"Small Straight": -1,
"Large Straight": -1,
"Yahtzee": -1,
"Chance": 13,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment