def input_and_create_user(self):
"""
Ask for new username and add it to the list of users.
"""
print("Please input username!")
new_username = input()
new_user = user.User(new_username)
self.users.append(new_user)
评论列表
文章目录