码迷,mamicode.com
首页 > 编程语言 > 详细

python文件名与module名冲突,出错'module' object has no attribute 'strftime'

时间:2015-10-31 00:17:12      阅读:414      评论:0      收藏:0      [点我收藏+]

标签:


import
time print time.strftime(%Y%m%d%H%M%S)

以上小程序命名为time.py

运行时出现错误提示:

print time.strftime(‘%Y%m%d%H%M%S‘)

AttributeError: ‘module‘ object has no attribute ‘strftime‘

 

确认了strftime确实是time的函数后,还以为这是一个bug呢

然后直接用console运行以上代码,发现能得出正确的结果,说明代码没问题,那就可能是名字的问题了,想到这里才猛然发现 import的module是time,而我给这个python文件命名的也是time,估计是冲突了。

把自己写的试验程序名字由time.py改成别的后再试果然就运行正常了。

 

python文件名与module名冲突,出错'module' object has no attribute 'strftime'

标签:

原文地址:http://www.cnblogs.com/myTechBlog-hyh/p/4924614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!