python获取时间戳字符串

from datetime import datetime
 
date = datetime.now()
print(date)
print(date.strftime("%Y-%m-%d %H-%M-%S"))
print(str(date))

python获取时间戳字符串_第1张图片

你可能感兴趣的:(python)