python获取当前日期、时间

import time


time_start = time.time()        # 获取当前时间戳

date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())     # 获取当前:年、月、日、时、分、秒
print(date)

date = time.strftime("%Y-%m-%d", time.localtime())     # 获取当前:年、月、日
print(date)

date = time.strftime("%H:%M:%S", time.localtime())      # 获取当前:时、分、秒
print(date)

可参考:Python时间戳和日期格式之间的相互转化

你可能感兴趣的:(python,开发语言)