标签:整型 imp nbsp 登陆 输入 == 字符串类型 print and
#登陆系统 import random a=‘Eddie‘#准备账号 b=19#准备密码 c=input (‘请输入账号:‘)#所以账号不需要转化类型,本身就是字符串 if a==c: print(‘账号正确,请输入密码‘) d=int(input(‘请输入密码:‘))#7788 if b==d: print(‘恭喜您登陆成功‘) else: print(‘密码错误,请重新输入‘) #猜数字游戏 e=random.randint(1,7)#准备一个答案 f=int(input(‘请输入一个1-7之间的数字:‘))#将字符串类型转化成了整型 if e==f: print(‘恭喜你猜对了‘) else: print(‘很遗憾,猜错了‘)
标签:整型 imp nbsp 登陆 输入 == 字符串类型 print and
原文地址:https://www.cnblogs.com/haishangmingdeng/p/11312303.html