Python 字典 字典是另一种可变容器模型,且可存储任意类型对象。字典的每个键值 key=>value 对用冒号 : 分割,每个键值对之间用逗号 , 分割,整个字典包括在花括号 {} 中阅读全文 Python 2022-04-16 评论 131 次浏览
Python 元组 Python 的元组与列表类似,不同之处在于元组的元素不能修改。元组使用小括号,列表使用方括号。元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。可以使用tuple()来进行创建c = (i for i in range(1,10))print(tuple(c))#(1, 2, 3, 4, 5, 6, 7, 8, 9)#元组中的列表可以修改c = (1,2,['a','b'])print(c)#(1, 2, ['a', 'b'])c[2][0]='A'c[2][1]='B'print(c)#(1, 2, ['A', 'B']) Python 2022-04-16 评论 286 次浏览
Python for while for 嵌套for i in range(1, 10): for j in range(1, i+1): print(f'{i} x {j} = {i * j}',end=' ') print()while嵌套i = 1while i < 10: j = 1 while j < i + 1: print(f'{i} x {j} = {i * j}', end=' ') j += 1 print() i += 1while for嵌套i = 1while i < 10: for j in range(1, i + 1): print(f'{i} x {j} = {i * j}', end=' ') print() i += 1退出、break、continuex = Truewhile x: s = input('input:') if s == 'e': x = False print('exit , else 会运行') elif s == 'ee': print('exit , else 不会运行') break elif s == 'c': continue # 不做任何事情 print('print:', s)else: # beak时 不会执行 print('hello') Python 2022-04-16 评论 193 次浏览