Python|将字符串转换为 DateTime,反之亦然
编写一个Python程序将给定的字符串转换为日期时间,反之亦然。
使用strptime()
函数将字符串转换为 DateTime 的程序。
例子:
Input : Dec 4 2018 10:07AM
Output : 2018-12-04 10:07:00
Input : Jun 12 2013 5:30PM
Output : 2013-06-12 17:30:00
strptime()
在日期时间和时间模块中可用,用于日期时间转换。此函数将给定的日期时间字符串更改为所需的格式。
句法:
datetime.strptime(date_string, format)
参数date_string
和format应该是字符串类型。
import datetime
# Function to convert string to datetime
def convert(date_time):
format = '%b %d %Y %I:%M%p' # The format
datetime_str = datetime.datetime.strptime(date_time, format)
return datetime_str
# Driver code
date_time = 'Dec 4 2018 10:07AM'
print(convert(date_time))
输出:
2018-12-04 10:07:00
将 DateTime 转换为字符串的程序
例子:
Input : 2018-12-04 10:07:00
Output : Dec 4 2018 10:07:00AM
Input : 2013-06-12 17:30:00Jun 12 2013 5:30PM
Output : Jun 12 2013 5:30:00PM
Python strftime()
函数存在于 datetime 和 time 模块中,用于根据指定的格式字符串创建字符串表示。
句法:
datetime_object.strftime(format_str)
另一个类似的函数在 time 模块中可用,它将元组或struct_time
对象转换为格式参数指定的字符串。
import time
# Function to convert string to datetime
def convert(datetime_str):
datetime_str = time.mktime(datetime_str)
format = "%b %d %Y %r" # The format
dateTime = time.strftime(format, time.gmtime(datetime_str))
return dateTime
# Driver code
date_time = (2018, 12, 4, 10, 7, 00, 1, 48, 0)
print(convert(date_time))
输出:
Dec 04 2018 10:07:00 AM