首页 >后端开发 >Python教程 >如何将字符串日期时间字符串转换为 Python 日期时间对象?

如何将字符串日期时间字符串转换为 Python 日期时间对象?

Susan Sarandon
Susan Sarandon原创
2024-12-23 09:19:13630浏览

How Can I Convert String Datetime Strings to Python Datetime Objects?

将字符串日期时间字符串转换为日期时间对象

许多应用程序都以字符串形式使用时间戳。有必要将这些字符串转换为日期时间对象以进行进一步处理。以下是如何将“Jun 1 2005 1:33PM”之类的字符串转换为日期时间对象:

Python 中的 datetime.strptime 函数可以根据用户定义的格式轻松解析输入字符串,返回时区原生日期时间对象:

>>> from datetime import datetime
>>> datetime.strptime('Jun 1 2005  1:33PM', '%b %d %Y %I:%M%p')
datetime.datetime(2005, 6, 1, 13, 33)

要从日期时间对象获取日期对象,请使用 .date()方法:

>>> datetime.strptime('Jun 1 2005', '%b %d %Y').date()
date(2005, 6, 1)

其他资源:

  • [strptime 文档](https://docs.python.org/2/library/datetime.html#datetime.datetime. strptime)
  • [strptime/strftime 格式字符串文档](https://docs.python.org/2/library/datetime.html#strftime-and-strptime-format-codes)
  • [strftime.org 格式字符串备忘单](https:// www.strftime.org/)

请记住,strptime 代表“字符串解析时间”,strftime 代表“字符串格式”时间。”

以上是如何将字符串日期时间字符串转换为 Python 日期时间对象?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn