0

在 Python 终端,我可以运行:

import random
random.randint(1,6)

正如预期的那样,它给出了一个数字。但是,我将此脚本保存为 random.py 并且它无法运行:

import random
print random.randint(1,3)

它说“AttributeError:'module'对象没有属性'randint'”

4

1 回答 1

2

尝试将脚本另存为 random.py 以外的其他内容。它可能是自己进口的。在重试之前删除 CWD 中的 random.py 的旧副本。

于 2012-06-25T17:13:21.200 回答