程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Python >> python 實時分析日志源碼

python 實時分析日志源碼

編輯:Python
 #-*-coding:utf-8-*-
 import sys
 import time
 
 def check():
     p = 0
while True: f = open("log.txt", "r+") f1 = open("result.txt", "a+") #定位指針 f.seek(p, 0) filelist = f.readlines() if filelist: for line in filelist: #對行內容進行操作 f1.write(line*10) print line #獲取文件當前位置 p = f.tell()
print 'now p ', p f.close() f1.close() time.sleep(1) if __name__ == '__main__': check()
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved