资源简介
python 实现关键字查询代码,可以查询指定文件或者文件夹内关键字,统计出关键字次数和高亮显示关键字所在位置。
代码片段和文件信息
#-*- encoding: utf-8 -*-
#author : rayment
#CreateDate : 2012-07-04
#version 1.1
import datetime
import time
def getTime():
‘‘‘
return time is format of time(unit is second)
‘‘‘
return time.time()
def getCPUClockTime():
‘‘‘
return time is CPU Clock time
‘‘‘
return time.clock()
def formatTime(timevalue):
‘‘‘
format the time numbers
‘‘‘
hour = 0
minute = 0
second = 0
if timevalue > 0:
#count hour
hour = timevalue // 3600
remain = timevalue % 3600
#count minute
minute = remain // 60
remain = remain % 60
#count second
second = round(remain 3)
return ‘%.0fh:%.0fm:%.3fs‘%(hour minute second)
if __name__==‘__main__‘:
value = 134.45632
print value
print formatTime(value)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 882 2012-07-17 16:19 Search\countTime.py
文件 1043 2012-07-21 12:29 Search\countTime.pyc
文件 4187 2012-07-21 12:30 Search\search.py
目录 0 2012-07-21 15:23 Search
----------- --------- ---------- ----- ----
6112 4
- 上一篇:Python 搜狗词库的批量
- 下一篇:vgg_easy.py
评论
共有 条评论