Created
February 6, 2023 08:26
-
-
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
This file contains 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
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