Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Auth:
  2.     def __init__(self):
  3.         self.user = {}
  4.  
  5.     def signup(self):
  6.         user_login = input("Enter your nickname: ")
  7.         user_password = input("Enter your password: ")
  8.         self.user["login"] = user_login
  9.         self.user["password"] = user_password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement