标签:tin 升级 序列 十进制 次数 format color unicode编码 符号
1,打印字符串(str),利用%s
。
>>> print (‘My name is %s‘ % (‘TaoXiao‘)) My name is TaoXiao
2,打印整数,浮点数。
>>> print ("He is %d years old" % (23)) # 整数 %d He is 23 years old >>> print ("His height is %f m" % (1.73)) # 浮点数 %f His height is 1.730000 m >>> print ("His height is %.2f m" %(1.73)) # 浮点数(指定保留小数点位数) %.2f His height is 1.73 m >>> print ("His height is %.4f m" %(1.73)) # 浮点数(强制保留4位) %.4f His height is 1.7300 m
3,利用format。这是官方推荐用的方式,%方式将可能在后面的版本被淘汰。
>>> print(‘{1},{0},{1}‘.format(‘TaoXiao‘,18)) # 通过位置传递,相当方便,可以重复,可以换位置。 18,TaoXiao,18 >>> print(‘{name}: {age}‘.format(age=24,name=‘TaoXiao‘)) # 通过关键字传递 TaoXiao: 24
>>> print(‘我叫%s,今年%d,我的学习进度1%%‘ % (‘关亮和‘,28))
我叫关亮和,今年28,我的学习进度1%
1,前后条件为比较运算
print(1 < 2 or 3 > 1)
print(1 < 2 and 3 > 4)
print(1 < 2 and 3 > 4 or 8 < 6 and 9 > 5 or 7 > 2)
print(1 > 2 and 3 < 4 or 4 > 5 and 2 > 1 or 9 < 8)
print(1 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6)
2,前后两边的条件为数值
print(bool(100)) print(bool(-1)) print(bool(0)) print(int(True)) print(int(False))
1,基本循环
while 条件: # 循环体 # 如果条件为真,那么循环体则执行 # 如果条件为假,那么循环体不执行
2,循环终止语句
num = 0 while True: print(num) num += 1 if num == 100: break
count = 0 while count < 10: count += 1 if count == 7: continue print(count)
与其它语言else 一般只与if 搭配不同,在Python 中还有个while ...else 语句
while 后面的else 作用是指,当while 循环正常执行完,中间没有被break 中止的话,就会执行else后面的语句
while flag < 3: flag +=1 num = int(input("请输入一个数字:")) if num > 66: print("你输入的数字太大了") elif num < 66: print("你输入的数字太小了") else: print("恭喜你,猜对了") break else: print("太笨了你...")
如果执行过程中被break啦,就不会执行else的语句啦
count = 0 while count <= 5 : count += 1 if count == 3:break print("Loop",count) else: print("循环正常执行完啦") print("-----out of while loop ------")
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
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
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
4、while循环语句基本结构?
5、利用if语句写出猜大小的游戏:
设定一个理想数字比如:66,让用户输入数字,如果比66大,则显示猜测的结果大了;如果比66小,则显示猜测的结果小了;只有等于66,显示猜测结果正确,然后退出循环。
6、在5题的基础上进行升级:
给用户三次猜测机会,如果三次之内猜测对了,则显示猜测正确,退出循环,如果三次之内没有猜测正确,则自动退出循环,并显示‘太笨了你....’。
7、使用while循环输出 1 2 3 4 5 6 8 9 10
8、求1-100的所有数的和(三种方法)
9、输出 1-100 内的所有奇数(两种方法)
10、输出 1-100 内的所有偶数(两种方法)
11、求1-2+3-4+5 ... 99的所有数的和
12、?户登陆(三次输错机会)且每次输错误时显示剩余错误次数(提示:使?字符串格式化)
13、简述ASCII、Unicode、utf-8编码关系?
14、简述位和字节的关系?
15、“?男孩”使?UTF-8编码占??个字节?使?GBK编码占?个字节?
标签:tin 升级 序列 十进制 次数 format color unicode编码 符号
原文地址:https://www.cnblogs.com/peng104/p/9420609.html