You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
347 B
Python

import sys
def wc(filename):
count = 0
with open(filename) as f:
for _ in f:
count += 1
return count
def process_file(filename):
count = wc(filename)
print(f"file: {filename} has {count} lines")
def _main():
process_file(sys.argv[1])
if __name__ == "__main__":
_main()