文章目录
- 一、介绍
- 二、datetime使用将字符串转换为对象datetime.strptime()
- 三、将字符串转换为datetime.datetime()对象示例
- 四、将字符串转换为datetime.date()对象示例
- 五、将字符串转换为datetime.time()对象示例
- 六、datetime.datetime()使用区域设置示例将字符串转换为对象
- 七、struct_time()使用以下方法将字符串转换为对象time.strptime()
- 八、struct_time()使用提供的格式将字符串转换为对象示例
- 九、使用默认格式将字符串转换为struct_time()对象示例
- 十、排除strptime()错误
- 十一、结论
一、介绍
Pythondatetime和time模块都包含strptime()将字符串转换为对象的类方法。在本文中,您将使用strptime()将字符串转换为datetime对象struct_time()。
二、datetime使用将字符串转换为对象datetime.strptime()
该方法的语法datetime.strptime()是:
datetime.strptime(date_string, format)
该datetime.strptime()方法返回一个与格式解析的date_stringdatetime匹配的对象。两个参数都是必需的,并且必须是字符串。
有关中使用的格式指令的详细信息d