都文件特定的行

import linecache 

#thefiepath 文件路径 

#desired_line_number 整数,文件的特定行 

theline = linecache.getline(thefilepath, desired_line_number)

统计文件有一共有多少行

count = len(open(thefilepath).readlines( ))

你可能感兴趣的:(都文件特定的行)