码迷,mamicode.com
首页 > 其他好文 > 详细

date_02

时间:2020-04-08 11:47:13      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:用户登录   code   包含   input   特殊字符   unicode   是什么   语句   提示   

#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),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
# 下列结果是什么?
# 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 False
# 8)、2 > 1 and 3 3
# 9)、3 > 1 and 0 False
# 10)、3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2 2
# while循环语句基本结构?
# while 条件:
# 循环体
# 利用while语句写出猜大小的游戏:
# 设定一个理想数字比如:66,让用户输入数字,如果比66大,则显示猜测的结果大了;如果比66小,则显示猜测的结果小了;只有等于66,显示猜测结果正确,然后退出循环。
# 在5题的基础上进行升级:
# 给用户三次猜测机会,如果三次之内猜测对了,则显示猜测正确,退出循环,如果三次之内没有猜测正确,则自动退出循环,并显示‘太笨了你....’。
# number = 1
# while number < 4:
# count = 66
# your_count = int(input(‘请输入你的理想数字‘))
# if your_count == count:
# print(‘结果正确‘)
# elif your_count > count:
# print(‘结果猜大了‘)
# elif your_count < count:
# print(‘结果猜小了‘)
# number = number + 1
# print(‘太笨了......‘)
# 使用while循环输出 1 2 3 4 5 6 8 9 10
# count = 1
# while count < 11:
# if count == 7:
# pass
# else:
# print(count)
# count = count + 1
# 求1-100的所有数的和
# s = 0
# c = 1
# while c < 101:
# s = s + c
# c = c + 1
# print(s)
# 输出 1-100 内的所有奇数
# s = 0
# while s < 100:
# if s %2 == 0:
# pass
# else:
# print(s)
# s = s + 1
# 输出 1-100 内的所有偶数
# s = 0
# while s < 100:
# if s %2 == 0:
# print(s)
# else:
# pass
# s = s + 1
# 求1-2+3-4+5 ... 99的所有数的和
# s = 0
# n = 1
# while n < 100:
# if n %2 == 0:
# s = s - n
# print(s)
# else:
# s = s + n
# print(s)
# n = n + 1
# 用户登录(三次输错机会)且每次输错误时显示剩余错误次数(提示:使用字符串格式化)
# n = 1
# while n < 4:
# username = input(‘请输入你的用户名:‘)
# password = input(‘请输入你的密码:‘)
# code = ‘123‘
# your_code = input(‘请输入你的验证码:‘)
# if your_code == code:
# if username == ‘laoji‘ and password == ‘sb‘:
# print(‘登录成功‘)
# break
# else:
# print(‘验证码错误,还剩下%s次机会‘%(3 - n))
# n = n + 1
# 简述ASCII、Unicode、utf-8编码
#ASCII码:只包含:英文字母,数字,特殊字符
#Unicode: 万国码:把世界上所有的文字都记录到这个密码本
#Utf-8:升级:最少用8bit1个字节表示一个字符

date_02

标签:用户登录   code   包含   input   特殊字符   unicode   是什么   语句   提示   

原文地址:https://www.cnblogs.com/python1314/p/12658714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!