Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. class Deck(object):
  2.     Deck = [
  3.         Card(suit='club'),
  4.         Card(suit='heart'),
  5.         Card(suit='spade'),
  6.         Card(suit='diamond')
  7.     ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement