# -*- coding: utf-8 -*-
# @Time : 2018/12/20 14:34
# @Author : Endless-cloud
# @Site :
# @File : day 02 作业.py
# @Software: PyCharm
# >>>>1 : 1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6
# 解 1 True
#print(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
# 解 2 :False
# print(not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6)
# >>>>3 :8 or 3 and 4 or 2 and 0 or 9 and 7
# 解 3 : 8
# print(8 or 3 and 4 or 2 and 0 or 9 and 7)
# >>>>>>4: 0 or 2 and 3 and 4 or 6 and 0or 3
# 解 4 : 4
# print(0 or 2 and 3 and 4 or 6 and 0 or 3)
# >>>>>>5 : 6 or 2 > 1
# 解 5 : 6 $$$$总结 算大于小于.然后计算or 遵循定律
# print(6 or 2 > 1)
#>>>>>6 :3 or 2 > 1
# 解 6: 3
# print(3 or 2 > 1)
# >>>>>>7: 0 or 5 < 4
# 解 7 : False
# print(0 or 5 < 4)
# >>>>>8: 5 < 4 or 3
# 解 8: 3
# print(5 < 4 or 3)
# >>>>> 9 : 2 > 1 or 6
# 解 9 :True
# print(2 > 1 or 6)
# >>>> 10 : 3 and 2 > 1
# 解 10 : True
# print(3 and 2 > 1)
# >>>>>11 : 0 and 3 > 1
# 解 11 :True X 答案 0
# print(0 and 3 > 1)
# >>>>12 :2 > 1 and 3
# 解 12 :3
# print(2 > 1 and 3)
# >>>>>13 :3 > 1 and 0
# 解13 : 0
# print(3 > 1 and 0)
#>>>>> 14 : 3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2
# 解14 :2
# print(3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2)
# >>>>>>15 : while 循环语句基本结构
'''
while 循环语句基本结构
1
满足条件循环
while 条件
循环体
2
while 条件
循环体
else
### 3个方式
1 改变条件退出
2 break
>continue 退出当前次数循环
3 exit() quit()
'''
# >>>>>>16 :利用while语句写出猜大小的游戏:
# # 设定一个理想数字比如:66,让用户输入数字,如果比66大,
# 则显示猜测的结果大了;如果比66小,则显示猜测的结果小了;
# 只有等于66,显示猜测结果正确,然后退出循环。
# 解 16 :
# num1 = 66
#
# while True:
# conut = int(input('请输入数字'))
# if num1 ==conut:
# print('输入正确')
# break
# elif num1 > conut :
# print('输入小了')
# else:print('输入大了')
# >>>>>>17 :# 6.在5题的基础上进行升级:
# # 给用户三次猜测机会,如果三次之内猜测对了,
# 则显示猜测正确,退出循环,如果三次之内没有猜测正确,
# 则自动退出循环,并显示‘太笨了你...’。
# 解 17
# count = 3
# num1 = 66
# while 0<count<=3:
# count =count -1
# shuru = int(input('请输入一个数字'))
# if num1 ==shuru:
# print('回答正确,退出程序')
# break
# elif num1 >shuru:
# print('小了','你还有 %s 次机会'%(count))
# else:print('大了','你还有 %s 次机会'%(count))
# else:print('么机会了都用完了')
## >>>>>>18 :.使用while循环输出 1 2 3 4 5 6 8 9 10 多种方法,对了就可以。
# 解 18:
# ^^^^^ 方法1
# i = 0
# while True:
# i = i+1
# print(i)
# if i ==10:
# break
# ^^^^ 方法2
# i= 1
# while i<=10:
# print(i)
# i =i+1
# ^^^^ 方法3 标志法
# count = True
# i = 1
# while count:
# print(i)
# i = i + 1
# if i ==11:
# count =False
# >>>>>> 19 :# 8.求1-100的所有数的和(两种方法)
# 解 19 :
# ^^^^方法1
# sun = 0
# i = 1
# while i<101:
# sun = sun +i
# i= i+1
# print(sun)
# ^^^^方法2
# sun1 = 0
# for i in range(101):
# sun1 = sun1 +i
# print(sun1)
# ^^^^方法3
# sun2 = 0
# i = 1
# flag = True
# while flag:
# sun2 = sun2+ i
# i = i+1
# if i ==101:
# flag= False
# print(sun2)
# >>>>>> 20 :输出 1-100 内的所有奇数(两种方法)
# 解 20 :
# ^^^^方法1
# i =0
# while i<101 :
# if i %2==0 :
# print(i)
# i = i +1
# ^^^^方法2
# for i in range(101):
# if i % 2 == 0:
# print(i)
# >>>> 21 : 输出 1-100 内的所有偶数(两种方法)
# 解 21 :
# ^^^^^方法1
# i =0
# while i<101 :
# if i %2==1 :
# print(i)
# # i = i +1
# ^^^^方法2
# for i in range(101):
# if i % 2 == 1:
# print(i)
# >>>>>>>22 : .求1-2+3-4+5 ... 99的所有数的和
# 解 22
# i = 0
# sun = 0
# while i <100:
#
# if i % 2 ==1:
# sun =sun+i
# else:sun =sun-i
# i= i+1

# print(sun)
# >>>>>>23 :12.⽤户登陆(三次输错机会)
# 且每次输错误时显示剩余错误次数(提示:使⽤字符串格式化)
# 解 23
# ^^^^^方法1
# count = 3
# username = 'wang'
# password = '123'
# while 0<count<=3:
# count= count-1
# username1 = input('亲输入账号')
# password1 = input('亲输入密码')
# if username == username1 and password ==password1:
# print('亲登进来了哦')
# break
# else:print('你还有% s次机会哦'%(count))
# else:print('亲你没机会了呢')
#^^^^^^方法2
# username = 'wang'
# password = '123'
# for i in range(3):
# username1 = input('亲输入账号')
# password1 = input('亲输入密码')
# count = 2 -i
# if username ==username1 and password==password1:
# print('亲登录进来了哦')
# break
# else:print('亲账号或者密码错了了呢,你还有%s 次机会了呢'%(count))
# if count ==0 :print('亲都错了呢没机会了的说')
# >>>>>>>>>>24:简述ASCII、Unicode、utf-8编码关系?
# 解 24 :
'''
ASCII是 世界上第一个编码本
由 8位表达 英文,数字,符号
0000 0000
在ascii 中 8 个字符表示1 位
unicode 是万国码 ,期初由16位表达,之后由 32 位表达 ,浪费资源
utf - 8 是最少8位的码 ,中国字由 24位组成
'''
# >>>>>>>>25 简述位和字节的关系?
#解 25 :
'''
8位表示一个字节 ,一个字节表示一个bit
'''
#>>>>>26 :.“⽼男孩”使⽤UTF-8编码占⽤⼏个字节?使⽤GBK编码占⼏个字节?
# 解 26 :
'''
utf -8
9 字节
gbk
6 字节
'''

day 02 ---class - homework的更多相关文章

  1. 软件工程 week 02

    一.地址链接 1.作业地址:https://edu.cnblogs.com/campus/nenu/2016CS/homework/2110 2.git仓库地址:https://git.coding. ...

  2. 作业要求20181204-7 Final阶段第1周/共1周 Scrum立会报告+燃尽图 02

    作业要求参见https://edu.cnblogs.com/campus/nenu/2018fall/homework/2481 版本控制地址https://git.coding.net/lglr20 ...

  3. 20181009-3 选题 Scrum立会报告+燃尽图 02

    Scrum立会报告+燃尽图(02)选题 此作业要求参见:https://edu.cnblogs.com/campus/nenu/2018fall/homework/2191 一.小组介绍 组长:刘莹莹 ...

  4. Beta阶段第2周/共2周 Scrum立会报告+燃尽图 02

    此作业要求参见:[https://edu.cnblogs.com/campus/nenu/2018fall/homework/2410] 版本控制地址   https://git.coding.net ...

  5. 作业要求20181113-4 Beta阶段第1周/共2周 Scrum立会报告+燃尽图 02

    作业要求:https://edu.cnblogs.com/campus/nenu/2018fall/homework/2384 版本控制:[https://git.coding.net/lglr201 ...

  6. Alpha阶段第2周/共2周 Scrum立会报告+燃尽图 02

    此次作业要求参见 [https://edu.cnblogs.com/campus/nenu/2018fall/homework/2285] Scrum master:祁玉 一.小组介绍 组长:王一可 ...

  7. 20181016-4 Alpha阶段第1周/共2周 Scrum立会报告+燃尽图 02

    此次作业要求参见 [https://edu.cnblogs.com/campus/nenu/2018fall/homework/2247] Scrum master:祁玉 一.小组介绍 组长:王一可 ...

  8. c语言1博客作业02

    c语言1博客作业02 这个作业属于哪个课程 C语言程序设计 这个作业的要求在哪 [作业要求](https://edu.cnblogs.com/campus/zswxy/SE2019-2/homewor ...

  9. | C语言I作业02

    C语言I博客作业02 标签: 18软件2班 李煦亮 问题 答案 这个作业属于那个课程 C语言程序设计I 这个作业要求在哪里 https://edu.cnblogs.com/campus/zswxy/C ...

随机推荐

  1. Kafka学习整理五(Consumer配置)

    Property Default Description group.id   用来唯一标识consumer进程所在组的字符串,如果设置同样的group id,表示这些processes都是属于同一个 ...

  2. Get The Client Info From PHP SERVER Arrary

    Get The Client Info From PHP SERVER Arrary <?php date_default_timezone_set( "Asiz/Shanghai&q ...

  3. Android内核的编译与测试

    1.下载Android内核 source.android.com/source->Downloading and Building Building Kernels 大概要花2个小时,其源码在培 ...

  4. mysql查询今天、昨天、近7天、近30天、本月、上一月的SQL语句

    mysql查询今天.昨天.近7天.近30天.本月.上一月的SQL语句 这篇文章主要介绍了mysql查询今天.昨天.近7天.近30天.本月.上一月的SQL语句,一般在一些统计报表中比较常用这个时间段,需 ...

  5. 视频转换工具ffmpeg

    安装ffmpeg ffmpeg官网下载地址点击此处. 如果使用mac也可用homebrew下载安装:brew install ffmpeg 使用ffmpeg 命令如下:ffmpeg -i input. ...

  6. 从Objective-C到Swift,你必须会的(三)init的顺序

    Objective-C的构造函数吧,就最后return一个self.里头你要初始化了什么都可以.在Swift的init函数里把super.init放在前面,然后再初始化你代码里的东西就会报错了. 所以 ...

  7. python int函数转换浮点型字符串的坑???

    python中的int函数可以将数字或字符串转换为整型数字类型,具体功能就不提了 最近发现一个问题,对于字符串'1.1'之类的,int转换的时候会报异常,这是为什么,个人感觉直接转换成1不就行了,干嘛 ...

  8. string 转换为枚举对应的值

    public static Object Parse(Type enumType,string value) 例如:(Colors)Enum.Parse(typeof(Colors), "R ...

  9. [label][转载][web-design-psychology]网页设计心理

    原文出处: http://mux.alimama.com/posts/1301 Tip1:信息不要同时全部展示,阶段性地向用户展示当前场景里必要的信息 设计师经常犯的错误:同时将大量信息展示给用户.不 ...

  10. cenos 安装nginx并添加到service

    系统平台:CentOS release 6.6 (Final) 64位. 一.安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtoo ...