资源简介
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
相关资源
- python 记录键盘按键(基于keyboard)
- ciscoIOUKeygen.py
- 用Python 编写的一个Monkey脚本
- 爬虫多维度抓取链家二手房成交数据
- Python-同步MongoDB数据到ElasticSearch
- knn_search.py
- 基于selective_search对手写数字串进行分
- python keylogger键盘记录源码
- Python+OpenCV实现Selective Search算法
- Python 数据结构入门 - 二叉搜索树(
- Python For Chrome自动化测试Demo
- jiu0Monkey.yml
- 基于python开发的monkey自动化工具
评论
共有 条评论