Python全栈学习_day002作业
2018-10-23 03:06:43来源:博客园 阅读 ()
Day2作业及默写
1、判断下列逻辑语句的True,False.
1)1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6
2)not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6
1)True 2)False
2、求出下列逻辑语句的值。
1),8 or 3 and 4 or 2 and 0 or 9 and 7
2),0 or 2 and 3 and 4 or 6 and 0 or 3
1)8 2)4
3、下列结果是什么?
1)、6 or 2 > 1
2)、3 or 2 > 1
3)、0 or 5 < 4
4)、5 < 4 or 3
5)、2 > 1 or 6
6)、3 and 2 > 1
7)、0 and 3 > 1
8)、2 > 1 and 3
9)、3 > 1 and 0
10)、3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2
1)6 2)3 3)False # 注意这个 4)3 5)True 6)True 7)0 8)3 9)0 10)2
4、while循环语句基本结构?
while 条件: 循环体
5、利用if语句写出猜大小的游戏:
设定一个理想数字比如:66,让用户输入数字,如果比66大,则显示猜测的结果大了;如果比66小,则显示猜测的结果小了;只有等于66,显示猜测结果正确,然后退出循环。
f = 66 while 1: num = int(input('请输入一个数字:')) if f == num: print('猜测正确') break elif f > num: print('小了') else: print('大了')
6、在5题的基础上进行升级:
给用户三次猜测机会,如果三次之内猜测对了,则显示猜测正确,退出循环,如果三次之内没有猜测正确,则自动退出循环,并显示‘太笨了你....’。
f = 66 count = 0 while 1: num = int(input('请输入一个数字:')) if count == 2: print('太笨了你') break if f == num: print('猜测正确') break elif f > num: print('小了') count += 1 else: print('大了') count += 1
7、使用while循环输出 1 2 3 4 5 6 8 9 10
num = 1 while num < 11: print(num) num += 1
8、求1-100的所有数的和(三种方法)
方法一: flag = True count = 1 sum = 0 while flag: sum += count count += 1 if count > 100: flag = False print(sum) 方法二: num = 1 sum = 0 while num < 101: sum += num num += 1 print(sum) 方法三: sum = 0 for i in range(101): sum += i print(sum)
9、输出 1-100 内的所有奇数(两种方法)
方法一: for i in range(1,101, 2): print(i) 方法二: count = 1 while count < 101: if count % 2 == 1: print(count) count += 2 else: count += 2
10、输出 1-100 内的所有偶数(两种方法)
方法一: for i in range(2,101, 2): print(i) 方法二: count = 2 while count < 101: if count % 2 == 0: print(count) count += 2 else: count += 2
11、求1-2+3-4+5 ... 99的所有数的和
count = 1 sum = 0 while count < 100: sum += (-1)**(count-1) * count count += 1 print(sum)
12、?户登陆(三次输错机会)且每次输错误时显示剩余错误次数(提示:使?字符串格式化)
name = 'BlameKidd' pwd = '123123' count = 2 while count >= 0: name_input = input('请输入用户名:') pwd_input = input('请输入密码:') if name == name_input and pwd == pwd_input: print('登录成功') else: print('用户名或密码错误,还剩%s次输入机会' % (count)) count -= 1
13、简述ASCII、Unicode、utf-8编码关系?
ASCII码: 英文:8位 Unicode: 英文:32位 中文:32位 UTF-8: 英文:8位 欧洲文字:16位 中文:24位
14、简述位和字节的关系?
8位 == 1个字节
15、“?男孩”使?UTF-8编码占??个字节?使?GBK编码占?个字节?
UTF-8:9个字节 GBK:6个字节
下周一默写代码:
Bit,Bytes,KB,MB,GB,TB之间的转换关系。
Unicode,utf-8,GBK,每个编码英文,中文,分别用几个字节表示。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Django认证系统
下一篇:20181022
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash