Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Python 终端,我可以运行:
import random random.randint(1,6)
正如预期的那样,它给出了一个数字。但是,我将此脚本保存为 random.py 并且它无法运行:
import random print random.randint(1,3)
它说“AttributeError:'module'对象没有属性'randint'”
尝试将脚本另存为 random.py 以外的其他内容。它可能是自己进口的。在重试之前删除 CWD 中的 random.py 的旧副本。