Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class Wit():
  2. def __init__(self):
  3. self.informationPopup('Wit', 'J')
  4. def informationPopup(self, group, value):
  5. self.group = group
  6. self.value = value
  7. print(group)
  8. print(value)
  9.  
  10. # Run class
  11. Wit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement