Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. class Deck(object):
  2.    
  3.     def __init__(self):
  4.         self.cards = []
  5.        
  6.     def initialize_deck(self):
  7.         for index in range(76):
  8.             new_card = Card('club')
  9.             self.cards.append(new_card)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement