Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class Card:
  2. def __init__(self, value, figure, color):
  3. self.value = value
  4. self.figure = figure
  5. self.color = color
  6.  
  7.  
  8. def newDeck():
  9. Deck = [Card(value, figure, color)
  10. for value in range(1,13)
  11. for color in colors]
  12. newDeck()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement