Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Cards():
  2. def __init__(self, cards = []):
  3. self.cards = cards
  4.  
  5. def remove(self,cards = None):
  6. if type(cards) is None:
  7. print('lalalla')
  8. card = Cards()
  9. card.remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement