我在将随机导入我的 python 程序时遇到了一些问题。我已经阅读了关于这个主题的其他线程,对于其他人来说,它似乎源于名为 random.py 的文件。
我的文件未命名为 random.py。我使用 print( random.file ) 来查看它是从哪里导入的,它似乎是从 C:\Python27\lib\random.pyc 导入的
我已尝试将该文件移出文件夹,但仍然无法正常工作。
这是错误:
Traceback (most recent call last):
File "C:/Python27/Projects/Test.py", line 4, in <module>
r1 = random.randomint(20,400)
AttributeError: 'module' object has no attribute 'randomint'
我还在 powershell 和解释器中进行了测试。
这是代码片段:
import random
import getpass
r1 = random.randomint(20,400)
r2 = random.randomint(20,400)
p = getpass.getpass(prompt='Please enter the correct value: %d * %d: ' %(r1,r2))
if p == (r1*r2):
print "Correct"
else:
print "Incorrect"
谁能帮我吗?
编辑:我是个白痴。谢谢。