Commit 35d02500 by BellCodeEditor

save project

parent 99f93c1d
Showing with 18 additions and 0 deletions
username="phthon"
userpassword="123456"
name=input("你的用户名")
password=input("你的密码")
while True:
if name!=username:
print("名字错误")
name=input("你的用户名")
if password!=userpassword:
print("密码错误")
password=input("你的密码")
if name==username and password==userpassword:
print("登入成功")
break
print("欢迎来到贝尔编程")
# 保存在服务器数据库中的用户密码(正确的密码) # 保存在服务器数据库中的用户密码(正确的密码)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment