摘要:
和数字相关 数字——数据类型相关:bool,int,float,complex 数字——进制转换相关:bin,oct,hex 数字——数学运算:abs,divmod,min,max,sum,round,pow 和数据结构相关 序列——列表和元组相关的:list和tuple 序列——字符串相关的:st 阅读全文
摘要:
函数基础-传参 1.按位置传值多余的参数都由*args统一接收,得到一个元组的形式 def mysum(*args): the_sum = 0 for i in args: the_sum+=i return the_sum the_sum = mysum(1,2,3,4) print(the_su 阅读全文
摘要:
描述 enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。 Python 2.3. 以上版本可用,2.6 添加 start 参数。 >>>seq = ['one', 'two', 'three'] >> 阅读全文
该文被密码保护。 阅读全文
摘要:
1、数据类型属性 不可变数据类型:元组、bool、int、str (可哈希hash) 可变数据类型:列表、dic、set (不可哈希hash) 2、字典的key必须是不可变数据类型;value为任意数据类型 3、字典增删改查 1、字典增加: dict [“key”]=value dict.setde 阅读全文