Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. liste= list()
  2. class listeur:
  3. global liste
  4. def __init__(self):
  5. liste.append(self)
  6.  
  7. def listemoi():
  8. print(liste)
  9.  
  10. a = listeur()
  11. b = listeur()
  12. c = listeur()
  13.  
  14. listeur.listemoi()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement