6 lines
176 B
Python
6 lines
176 B
Python
|
def create_user(first, last, username, email, password):
|
||
|
print(first, last, username, email, password)
|
||
|
|
||
|
def set_password(username, password):
|
||
|
print(username, password)
|