TypeError: 'Module' object is not callable Help please
本问题已经有最佳答案,请猛点这里访问。
有个奇怪的错误有人能帮忙吗?
1 2 3 4 5 6 7 8 9 | Traceback (most recent call last): File"./test.py", line 172, in <module> main() File"./test.py", line 150, in main if random() < .5 and losttwice < 5: TypeError: 'module' object is not callable import urllib2,urllib,os,simplejson, random |
你应该使用
1 2 3 | >>> import random >>> random.random() 0.376462621569017 |
关于
1 2 | random(...) random() -> x in the interval [0, 1). |
号
如果您只想使用"random"模块中的
1 2 3 | >>> from random import random #imports only random() from random module >>> random() #now use random() directly, 0.7979255998231091 |
您试图调用