Control the number of file read and write operations, improve the efficiency of program execution (experience)

Source: Internet
Author: User

Programming often encounter file read and write operations, the file read and write relative to the memory operation, the speed is very slow. Therefore, when programming, you need to control the number of file read and write to improve the efficiency of program execution. Take the following code, for example, to illustrate.


words = [' A ', ' B ', ' C ', ' d ']for I in range (4): The For line in file (' File_read.txt '): if (Words[i] on line):p rint (line) for line I n File (' File_read.txt '): For I in range (4): if (Words[i] on line):p rint (line)


The first for loop, which requires reading 4 files, is very inefficient to perform. The second for loop, which requires only 1 files to be read, performs more efficiently.


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Control the number of file read and write operations, improve the efficiency of program execution (experience)

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.