import time
# time.sleep()
# time.time()
# time.ctime()
import math
# math.pi
# math.pow(2,3)
import os
import random
import string
random.random() # 随机选择0,1之间的浮点数
random.randint(1,4) # 随机选择1-4中的整数
a = random.choice('hello') # 从序列中随机选取一个元素
random.sample(string.ascii_letters + string.digits,4)
# 随机选择大小写字母+数字,总长度为4的
random.shuffle(list(range(1,10)))
# 将序列1-9中的元素顺序打乱
import functools
print(functools.reduce(lambda x,y:x+y,range(10)))
# 回顾reduce求0-9之和
reduce:把一个函数作用在一个序列上,这个函数必须接收两个参数
reduce把结果继续和序列的下一个元素做累积计算
reduce(f,[x1,x2,x3,x4]) = f(f(f(x1,x2),x3),x4)
python -官方第三方模块
最新推荐文章于 2024-08-24 09:00:00 发布