Why is datetime.strptime not working in this simple example?(为什么 datetime.strptime 在这个简单的例子中不起作用?)
问题描述
我正在使用 strptime 来转换日期字符串进入 datetime
.根据链接页面,这样的格式应该可以工作:
I'm using strptime to convert a date string into a datetime
. According to the linked page, formatting like this should work:
>>> # Using datetime.strptime()
>>> dt = datetime.strptime("21/11/06 16:30", "%d/%m/%y %H:%M")
我的代码是:
import datetime
dtDate = datetime.strptime(sDate,"%m/%d/%Y")
其中 sDate = "07/27/2012"
.(我从同一页了解到,%Y
是 以世纪为十进制数的年份.")
where sDate = "07/27/2012"
. (I understand, from the same page, that %Y
is "Year with century as a decimal number.")
我已经尝试将 sDate 的实际值放入代码中:
I have tried putting the actual value of sDate into the code:
dtDate = datetime.strptime("07/27/2012","%m/%d/%Y")
但这不起作用.我得到的错误是:
but this does not work. The error I get is:
AttributeError: 'module' 对象没有属性 'strptime'
AttributeError: 'module' object has no attribute 'strptime'
我做错了什么?
推荐答案
你应该使用 datetime.datetime.strptime
.请注意,非常旧的 Python 版本(2.4 和更早版本)没有 datetime.datetime.strptime
;在这种情况下使用 time.strptime
.
You should be using datetime.datetime.strptime
. Note that very old versions of Python (2.4 and older) don't have datetime.datetime.strptime
; use time.strptime
in that case.
这篇关于为什么 datetime.strptime 在这个简单的例子中不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 datetime.strptime 在这个简单的例子中不起作用?
基础教程推荐
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01