在 Python 中,将日期时间类型转换为字符串可以通过以下几种方式来实现:
方法一:使用strftime()
方法
from datetime import datetime
now = datetime.now()
formatted_string = now.strftime("%Y-%m-%d %H:%M:%S")
print(formatted_string)
strftime()
方法可以根据指定的格式字符串将日期时间对象转换为字符串。
方法二:使用内置的str()
函数
now = datetime.now()
formatted_string = str(now)
print(formatted_string)
这种方法会将日期时间对象转换为一个默认的字符串表示。
需要注意的是,在选择格式字符串时,要根据实际需求来确定合适的格式,以确保转换后的字符串符合预期