获取当前时间

Posted Bingo_Python

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前时间相关的知识,希望对你有一定的参考价值。

import datetime
now_time = datetime.datetime.now()
print(now_time.strftime(%Y-%m-%d %H:%M:%S))

引用:http://www.jb51.net/article/67828.htm

 

如果结合对文件修改的时候需要把获取到的时间放置文件名中可以通过只去格式化的部分值插入到新命名str中

import datetime
from xlrd import open_workbook
from xlutils.copy import copy
now_time = datetime.datetime.now()
now_time_year = now_time.strftime(%Y-%m-%d)
now_time_H = now_time.strftime(%H)
now_time_M = now_time.strftime(%M)
now_time_S = now_time.strftime(%S)
rb = open_workbook(D:\qiuwenbin.xlsx)
wb = copy(rb)
ws = wb.get_sheet(0)
ws.write(1,1,283)
wb.save(D:\qiuwenbin({},{}时{}分{}秒).xlsx.format(now_time_year,now_time_H,now_time_M,now_time_S))

 

以上是关于获取当前时间的主要内容,如果未能解决你的问题,请参考以下文章

没有使用 navController.currentDestination?.id 获取当前片段 ID

Android - 获取当前片段

在onBackPressed之外的活动中获取当前片段?

在 android dumpsys 中获取当前可见片段的信息

在 viewpager 中获取当前 Fragment 实例

如何使用 TabLayout 在 ViewPager 中的 Google 地图片段中获取当前位置