Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class User(object):
  2. def __init__(self, username, password):
  3. self.username = username
  4. self.password = password
  5.  
  6. def display(self):
  7. print self.username
  8. print self.password
  9.  
  10.  
  11. usr = User("guri", "password")
  12. usr.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement