Python

トップ > レビュー > Python

ファイルの行数を数えてみる

wc.py:

import sys,os.path

n = 0

if len(sys.argv) < 2:
        print "USAGE: "+sys.argv[0]+" file"
        sys.exit(1)

f = sys.argv[1]
if not os.path.isfile(f):
        print "File "+f+" not found."
        sys.exit(1)

for line in open(f,"r"):
        n = n + 1

print n