Python生成随机数

By | 2022-01-16

生成9位随机数

num = ''.join(str(i) for i in random.sample(range(0,9),9))