要將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"
表示將時間格式化為"年-月-日 時:分:秒"的形式。可以根據自己的需求修改格式化字符串來得到不同的輸出格式。