python怎么将datetime转为字符串

59次阅读
没有评论

共计 358 个字符,预计需要花费 1 分钟才能阅读完成。

要将 datetime 对象转换为字符串,可以使用 datetime 对象的 strftime 方法。strftime 方法接受一个格式化字符串作为参数,用于定义输出字符串的格式。

以下是一个示例:

import datetime

# 获取当前时间
now = datetime.datetime.now()

# 将 datetime 对象转换为字符串
str_now = now.strftime("%Y-%m-%d %H:%M:%S")

print(str_now)

输出结果:

2022-01-01 12:34:56

在上面的示例中,将当前时间对象通过 strftime 方法转换为字符串,参数 "%Y-%m-%d %H:%M:%S" 表示将时间格式化为 " 年 - 月 - 日 时: 分: 秒 " 的形式。可以根据自己的需求修改格式化字符串来得到不同的输出格式。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计358字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)