1樓:匿名使用者
f=open('a.txt','r')
cont=f.readlines()
print len(cont)
2樓:匿名使用者
def count_wc( filename ):
return int(os.popen('wc -l %s'%filename).read().split()[0])
def count_wcx( filename ):
return int(os.popen('zcat %s | wc -l'%filename).read().split()[0])
def count_readlines( fileobject ):
return len(fileobject.readlines())
def linecount_enumerate( fileobject ):
_count = -1
for _count, _line in enumerate(fileobject): pass
return _count + 1
def linecount_buffer( fileobject ):
_count = 0
#_thefile = open(testfilename, 'rb')
while true:
#buffer = _thefile.read(65536) #64 kb
buffer = fileobject.read(65536) #64 kb
if not buffer: break
_count += buffer.count('\n')
return _count
3樓:一半山川一半花海
print file('test.txt').read().count('\n')
python如何統計某重複行在一個txt裡的重複次數?
4樓:珍琪可可
f_test=open('test.txt','r')li=f_test.readlines()special_dna='dna=334455' #需要統計的行count=0 #計數
for i in li:
if i.strip('\n')==special_dna:
count=count+1
print(count)
python按行(一行就是一條)統計每5分鐘有多少條log資料
日月晨雲 暗航統計每5分鐘有多少條log資料,那大概的話一一行就是一條的話,5分鐘的話大概會有3000多條。 林森木木 你是要計算他五分鐘執行了多少行 嗎?這個很難統計吧,因為你同一個類,可能會執行多次,也就是說,存在重複執行的情況 遙控東方龍 按照你這個記行原則,五分鐘之內logo應該有資料,按照...
SQL統計數量,sql語句統計數量,統計一個欄位的值的數量
表a和表b分開來統計,最後合併兩個統計結果 時間在一個範圍內用 時間a between 時間1 and 時間2 由於不是很明白你的分組統計原則,所以group by語句暫時無法提供建議 肯定是一樣的,因為count 欄位 不是說這個欄位又多少個,而是記錄的條數,即行數,他和count 效果是一樣的。...
如何用Python寫一個http post請求
coding utf 8 import urllib2 import urllib 請求的url url 構造請求引數。params data 構造請求頭。headers req data,headers response import urllib2 import urllib 定義一個要提交的資...