python字符串转日期

  • Post author:
  • Post category:python


需要两步

为了从字符串中提取时间,并进行比较,因此有了这个问题,如何将字符串转换成datetime类型

1.字符串与time类型的转换

>>> import time

>>> timestr = “time2009-12-14”

>>> t = time.strptime(timestr, “time%Y-%m-%d”)

>>> print t

(2009, 12, 14, 0, 0, 0, 0, 348, -1)

>>> type(t)

<type ‘time.struct_time’>

>>>

如代码所示使用strptime进行转换,第一个参数是要转换的字符串,第二个参数是字符串中时间的格式

与之对应的有函数strftime,是将time类型转换相应的字符串

下面是格式化符号汇总

%a 星期几的简写 Weekday name, abbr.

%A 星期几的全称 Weekday name, full

%b 月分的简写 Month name, abbr.

%B 月份的全称 Month name, full

%c 标准的日期的时间串 Complete date and time representation

%d 十进制表示的每月的第几天 Day of the month

%H 24小时制的小时 Hour (24-hour clock)

%I 12小时制的小时 Hour (12-hour clock)

%j 十进制表示的每年的第几天 Day of