def wc_count(file_name):
import subprocess
out = subprocess.getoutput("wc -l %s" % file_name)
return int(out.split()[0])
def wc_count(file_name):
import subprocess
out = subprocess.getoutput("wc -l %s" % file_name)
return int(out.split()[0])
本文标题:python 快速获取文件行数
本文链接:https://www.haomeiwen.com/subject/rtbhhltx.html
网友评论