import copy File "D:/testing/python\copy.py", line 4, in 赞 踩 使用copy时报错 Traceback (most recent call last): 在使用copy时报错,原因是自己的.py的文件命名为copy.py与import进来的copy文件冲突了 解决方法:将自己的py文件名改了就行 Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。
python报错分析_import copy报错
File "D:/testing/python/copy.py", line 1, in <module>
import copy
File "D:/testing/python\copy.py", line 4, in <module>
b = copy.copy(a)
TypeError: 'module' object is not callable