Skip to content

Instantly share code, notes, and snippets.

@yanshengjia
Last active April 14, 2018 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yanshengjia/9751c03f8600f1230c42504db88637b0 to your computer and use it in GitHub Desktop.
Save yanshengjia/9751c03f8600f1230c42504db88637b0 to your computer and use it in GitHub Desktop.
Check the line numbers of a file
# python2
def check_line_numbers():
file_path = 'test.txt'
num_lines = sum(1 for line in open(file_path))
print(num_lines)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment