python学习笔记整理 数据结构--字典 无序的 {键:值} 对集合 用于查询的方法 len(d) Return the number of items in the dictionary d. 返回元素个数 d[key] Return the item of d with key key. Raises a KeyError if key is not in the map. If a subclass of dict defines a method _missing_() and key…
[python学习笔记]5.条件.循环和其他语句 print: 用来打印表达式,不管是字符串还是其他类型,都输出以字符串输出:可以通过逗号分隔输出多个表达式 import: 导入模块 import somemodule 导入模块 from somemodule import somefuction 导入函数 import math as foobar 导入模块,并使用别名 from math import sqrt as foobar 导入函数,并使用别名 序列解包:将序列赋值给多个变量…