这个问题一般在自学实验的时候。
新建了一个文件名为 random.py 的文件,然后在里面输入
import random print(random.random())
结果报错:
Traceback (most recent call last): File "D:/web/python/test/random.py", line 1, in <module> import random File "D:\web\python\test\random.py", line 2, in <module> print(random.random()) TypeError: 'module' object is not callable
百度了很多中文资料,也没查到原因。结果在 google 到一篇英文文章后才知道原因。
因为我的文件名导致的,不应该叫做 random.py,在 import random 的时候,导入了当前目录 random.py 也就是自身文件。然后就报错了。
因为初学,不了解 import 机制。下次注意了。