在Python终端,我可以运行:
import random
random.randint(1,6)
如预期的那样,它给出一个数字。但是,我将此脚本保存为random.py并且无法运行:
import random
print random.randint(1,3)
它说“AttributeError:'module'对象没有属性'randint'”
答案 0 :(得分:2)
尝试将脚本保存为random.py以外的其他内容。它可能是自我导入。在再次尝试之前,先删除CWD中的random.py旧版本。