Commit 80211d05 by BellCodeEditor

save project

parent 72a44922
Showing with 19 additions and 11 deletions
user="python"
userpassword="123456"
while True:
name=input("你的账号")
password=input("你的密码")
if name==username and password==userpassword:
print("输入正确")
break
print("欢迎来到贝尔编程")
\ No newline at end of file
user="python"
userpassword="123456"
userme=input("请输入您的账号:")
userpasswordme=input("请输入您的密码:")
if user==userme and userpassword==userpasswordme:
print("欢迎%s"%(user))
else:
print("您输入的账号和密码输入错误!")
\ No newline at end of file
i=0
while i<5:
print("悟空")
i=i+1
if i==4:
break
\ No newline at end of file
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