Commit f9ab64f8 by BellCodeEditor

auto save

parent 81af9a1e
Showing with 60 additions and 0 deletions
# a=6
# print(type(a))
# print(type(bool(a)))
# a=10
# b=20
# print(a or b)
# b=float(input("请输入"))
# if b>10:
# print("Yes")
# a=float(input("请输入"))
# if a%3==0:
# print("Yes")
# else:
# print("No")
# c=float(input("请输入"))
# if c%3==0:
# print("是3的倍数")
# if c%5==0:
# print("是5的倍数")
# else:
#print("NULL")
# N=float(input("输入"))
# if N%2==0:
# print(0)
# else:
# print(1)
# N=float(input("输入"))
# if N%7==0 and N%5!=0:
# print("Yes")
# else:
# print("No")
# N=float(input("输入"))
# if N>=90:
# print("A")
# if N>=80 and N<90:
# print("B")
# if N>=70 and N<80:
# print("C")
# if N<70:
# print("D")
# sum=0
# for i in range(1,101):
# sum=i+sum
# print(sum)
while True:
a=input("账号")
b=input("密码")
if a=="python" and b=="0345":
print("登录成功")
break
else:
print("账号或者密码错误")
++ "b/\357\274\214\357\274\214\357\274\214\343\200\202py"
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