Skip to content

Instantly share code, notes, and snippets.

@joelethan
Created September 4, 2018 13:58
Show Gist options
  • Save joelethan/b919475ce5f0fb3e262177498790b981 to your computer and use it in GitHub Desktop.
Save joelethan/b919475ce5f0fb3e262177498790b981 to your computer and use it in GitHub Desktop.
class SignUp:
def __init__(self):
self.user_bio=dict()
def add(self, username, password):
self.user_bio[username]=password
def get_password(self, username):
return self.user_bio[username]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment