这是我的python脚本:
import random
n=random.randint(1,100)
print(n)
这是我在linux mint terrminal中运行上述脚本时遇到的错误:
Traceback (most recent call last):
File "ran1.py", line 2, in <module>
n=random.randint(1,100)
AttributeError: module 'random' has no attribute 'randint'
随机模块中的其他属性,例如random.choice()
,random.choices()
也给出相同的错误。
请帮助我。