Example of using python to count the number of rows

Source: Internet
Author: User
When the file size is very large (above 10 GB), to know the number of rows is a problem, provide an example of using python to count the number of rows of the file. if you need a friend, refer to the following code:


Import time

Def block (file, size = 65536 ):
While True:
Nb = file. read (size)
If not nb:
Break
Yield nb

Def getLineCount (filename ):
With open (filename, "r", encoding = "UTF-8") as f:
Return sum (line. count ("\ n") for line in block (f ))
If _ name _ = "_ main __":
Import sys
Import OS
If len (sys. argv )! = 2:
Print ("error imput argument ")
Sys. exit (-1)
If not OS. path. isfile (sys. argv [1]):
Print (sys. argv + "is not a file ")
Sys. exit (-1)
Start_time = time. time ()
Print (getLineCount (sys. argv [1])
Print (time. time ()-start_time, "seconds ")

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.