Guest User

Untitled

a guest
Sep 17th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class Account:
  2. # define a non-static method
  3. def login(self, username, password):
  4. self.username = username
  5. self.password = password
  6.  
  7. """
  8. * Referencing the Account.login(self, username, password)
  9. * Just call the `Account` object in place of self
  10. """
  11. Account.login(Account, "Olasheni", "password_example")
Add Comment
Please, Sign In to add comment