1.简述编译型与解释型的语言,且分别列出你知道的哪些语言属于编译型,哪些属于解释型。
简单理解编译型语言类似谷歌翻译,整篇读入整篇翻译,代表语言有C语言,解释型语言类似同 声传译,读入一行翻译一行,代表语言有python。
2.执行python脚本的两种方式
交互式、代码写入文件
3.python单行注释和多行注释分别用什么
单行注释用单引号,多行注释用三引号
4.布尔值分别有什么
有true和false
5.申明变量注意事项有哪些
1.变量名首个不能为数字
2.变量名收个不能为字符
3.先定义后引用
6.如何查看变量在内存中的地址?
每个变量值对应一个id,用id查变量名在内存的地址
7.实现用户登录
# (1)实现用户输入用户名和密码,当用户名为seven且密码为123时,显示登录成功,否则登录失败! name = 'senven' pwd = '123' while true: name = ipunt('请输入用户名!') pwd = ipunt('请输入密码!') if name == 'senven' and pwd == '123': print('登录成功!') else: print('登录失败!') # (2)实现用户输入用户名和密码为seven且密码为123时,显示登录成功,否则登录失败,失败时允许登录三次 count = 0 while count <= 3: name = input('请输入用户名!') pwd = ipunt('请输入密码!') if name == 'seven' and pwd == '123': print('登录成功!') else: print('登录失败!') count += 1 # (3)实现用户输入用户和密码,当用户名为seven或alex且密码为123时,显示登录成功,否则登录失败,失败时允许重负输入三次。 count = 0 while count <= 3: name = input('请输入用户名!') pwd = input('请输入密码') if name == 'seven' or 'alex' and pwd == '123': print('登录成功!') else: print('登录失败!') count += 1
8.while循环题2
# a 使用while循环实现输出2-3+4-5+6....+100的和 e = 2 s = 0 while e <= 100: if e % 2 == 0: s += e else: s -= e e += 1 print(s) # b 使用whine循环实现输出1,2,3,4,5,6,7,8,9,11,12, count = 1 while count < 13: if count == 10: count += 1 coutinue print(count) count += 1 # c 使用while循环实现输出1-100以内所有的奇数。 count = 1 while count < 101: if count % 2 == 0: count += 1 continue print(count) count += 1 # d 使用while循环实现输出1-100内的所有偶数 count = 1 while count < 101: if count % 2 != 0: count += 1 continue print(count) count += 1 ''' 编写登录接口 基础要求; 让用户输入用户名密码 认证成功后显示欢迎信息 输入三次后退出程序 ''' count = 1 while count <= 3: count += 1 name = ipunt('请输入用户名') pwd = ipunt('请输入密码') if name=='tom' and pwd=='123': print('欢迎进入') break