Python基础作业第二天
- 1、判断下列逻辑语句的True,False.
1)1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6 True
2)not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6 False
备注:逻辑运算: 1, 在没有()的情况下not 优先级高于 and,and优先级高于or, 即优先级关系为( )>not>and>or,同一优先级从左往 右计算。
总结: () > not > and > or
- 2、求出下列逻辑语句的值。
1),8 or 3 and 4 or 2 and 0 or 9 and 7 8
2),0 or 2 and 3 and 4 or 6 and 0 or 3 4
x or y , x为真,值就是x,x为假,值是y;
x and y, x为真,值是y,x为假,值是x。
x or y if x == 0:
y
else: x and和or相反
- 3、下列结果是什么?
- 1)、6 or 2 > 1 # 6
2)、3 or 2 > 1 # 3
3)、0 or 5 < 4 # False
4)、5 < 4 or 3 # 3
5)、2 > 1 or 6 # True
6)、3 and 2 > 1 # True
7)、0 and 3 > 1 # 0
8)、2 > 1 and 3 # 3
9)、3 > 1 and 0 # 0
10)、3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2 # 2
4、while循环语句基本结构?
while True: contect=input('你干啥去: ') if contect=="我要去吃饭": #exit(0) #彻底的退出程序 #continue #停止当前本次循环,继续执行下一次循环,暂时的 #break #打断的是当前本层循环,毁灭性的,终止掉循环 print(contect) print('我先走了啊')
- 5、利用while语句写出猜数字的游戏:
设定一个理想数字比如:66,让用户输入数字,如果比66大,则显示猜测 的结果大了;如果比66小,则显示猜测的结果小了;只有等于66,显示猜测结果 正确,然后退出循环。
num=66 while True: number = int(input('请猜一个数字: ')) if number>66: print('猜大了') elif number<66: print("猜小了") elif number==66: print("恭喜你猜对了,真聪明") break
6、在5题的基础上进升级:
给用户三次猜测机会,如果三次之内猜测对了,则显示猜测正确,退出循 环,如果三次之内没有猜测正确,则自动退出循环,并显示‘太笨了你....’。
num=66 count=1 while count<=3: number = int(input('请猜一个数字: ')) if number>66: print('猜大了') elif number<66: print("猜小了") elif number==66: print("恭喜你猜对了,真聪明") exit(0) count=count+1 print("你也太笨了吧")
- 7.使用while循环输出 1 2 3 4 5 6 8 9 10
-
count=1 while count<=10: if count!=7: print(count) count=count+1
-
8.求1-100的所有数的和
count=1 sum=0 while count<=100: #count=count+1 sum = sum + count count=count+1 print(sum)
9.输出 1-100 内的所有奇数
count=0 while count<=100: if count%2!=0: print(count) count=count+1
count=-1 while count<=98: count=count+2 print(count)
10.输出 1-100 内的所有偶数
-
count=0 while count<=100: if count%2==0: print(count) count=count+1
11.求1-2+3-4+5 ... 99的所有数的和.
count = 1 sum = 0 while count<100: if count%2 == 1: sum +=count else: sum -=count count+=1 print(sum)
count=1 sum=0 while count<100: sum=sum+count*(-1)**(count+1) count=count+1 print(sum)
12.用户登陆(三次输错机会)且每次输错误时显示剩余错误次数(提示:使用 字符串格式化)
name="yonghuming" count=1 while count<=3: aaa= input("请输入用户名: ") if name!=aaa: print("密码错误你还有%s次机会" % (3-count)) count=count+1 else: print("登录成功") break
13. 用户输入一个数. 判断这个数是否是个质数(升级题).
n=int(input('请输入一个数字:')) if n == 1: print('不知道是不是') else: count = 2 while count <= n - 1: if n % count == 0: print('no') break count += 1 else: print('good')
age=int(input('请输入一个数字:')) for c in range(age-2): if age%(c+2)==0: print('no') break else: print('yes')
14. 输入一个广告标语. 判断这个广告是否合法. 根据最新的广告法来判断. 广 告法内容过多. 我们就判断是否包含'最', '第一', '稀缺', '国家级'等字样. 如果包 含. 提示, 广告不合法
例如, 1. 老男孩python世界第一. ==> 不合法 2. 今年过年不收礼啊. 收礼只收脑白金. ==> 合法
gg=input("请输入一段广告语: ") if "最"in gg or"第一" in gg or"稀缺" in gg or "国家级"in "guanggaoyu": print("你输入的广告语不合法") else: print(gg)
15. 输入一个数. 判断这个数是几位数(⽤算法实现)(升级题)
num=int(input("请输入一个数字: ")) count=0 while num>=1: num=num//10 count=count+1 print(count)