在
在使用python的时候,我们无非就是输出一个字符串的形式,或者在其他形式和字符串之间来回转换。时间数组是我们获取特定年份或日期的常用第一段。本文需要提到的time.strptime函数就是将字符串转换为时间元组的方法。
在下面的内容中,分别介绍其功能的概念、语法、参数、返回值和实例。
1.概念
一个时间字符串可以按照指定的格式解析成一个时间元组。
2.语法
time.strptime(string[, format])
3.参数
string -- 时间字符串。
format
-- 格式化字符串。
4.返回值
返回
struct_time对象。
5.实例
print(time.strptime("2020-12-15","%Y-%m-%d"))
输出
time.struct_time(tm_year=2020, tm_mon=12, tm_mday=15, tm_hour=10, tm_min=04)
以上就是
python中time.strptime的格式化,运行上面代码的结果后,我们可以清楚的知道对应的年月日等信息。大家都需要这种使用方式,不妨试试time.strptime函数。
(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何从python中的列表中删除指定元素10/18
- ♥ python中的flake8是什么12/03
- ♥ python input()的类型是什么09/26
- ♥ 如何在python中拆分字符串10/18
- ♥ python inf 是什么意思08/20
- ♥ python如何判断数据类型是否为字典08/23
内容反馈