import functools
test1 = [1,2,3,4]
test2 = [0,1,2,3]
test3 = [0,0,0,0]
# all 返回可迭代对象中的值是否都为真
print(all(test1)) # True
print(all(test2)) # Fasle
a,b = divmod(7,2)
print(a,b) # 3 1
for item in iter(test1) :
print(item,end=" ") # 1 2 3 4
# reduce() 函数会对参数序列中元素进行累积。
# 函数将一个数据集合(链表,元组等)中的所有数据进行下列操作:
# 用传给 reduce 中的函数 function(有两个参数)先对集合中的第 1、2 个元素进行操作,
# 得到的结果再与第三个数据用 function 函数运算,最后得到一个结果.
print('')
print(functools.reduce(lambda x,y:x+y , test1)) # 10
# round
print("round(80.23456, 2) : ", round(80.23456,2)) # 80.23
# chr
# 参数 :可以是10进制也可以是16进制的形式的数字
# 返回值 : 返回值是当前整数对应的 ASCII 字符
print(chr(48),chr(49),chr(97)) # 0 1 a
# zip
print(list(zip(test1,test2))) # [(1, 0), (2, 1), (3, 2), (4, 3)]
# *
print(*test1) # 1 2 3 4
# ord
print(ord('L')) # 76
Python : 不常用且实用函数复习
于 2022-04-07 13:14:07 首次发布