python生成随机四位数和AttributeError: module 'random' has no attribute 'sample'

2024-10-09 10:51:38 浏览数 (1)

python生成随机四位数和AttributeError: module 'random' has no attribute 'sample'

## AttributeError: module 'random' has no attribute 'sample'

##解决方法: ##原来是因为命名.py文件为random,和系统的有冲突导致的。 ##更改了脚本的名称,就可以解决了。 本地文件名称和系统的文件名称重名了。

代码语言:javascript复制
import string
import random


# 方法一
seeds = "0123456789"
random_str = []
for i in range(4):
     random_str.append(random.choice(seeds))
print("".join(random_str))

# 方法二
# seeds = string.digits
random_str = random.choices(seeds, k=4)
print("".join(random_str))

# 方法三
# seeds = string.digits
random_str = random.sample(seeds, k=4)
print("".join(random_str))

'''
打印输出如下:
9015
1104
5241
'''

0 人点赞