开发者

readline() is skipping lines in source file

开发者 https://www.devze.com 2023-03-18 23:06 出处:网络
I have a .txt file that I created with multiple lines. When I run a for loop, with a count accumulator, it skips lines.

I have a .txt file that I created with multiple lines.

When I run a for loop, with a count accumulator, it skips lines.

It skips the top line, and starts with the second, prints the fourth, the sixth, etc.

What is it I'm missing?

def main():
    # Open file line_numbers.txt
    data_file = open('line_numbers.txt', 'r')

    # initialize accumulatior
    count = 1
      

    # Read all lines in data_file
    for line in data_file:
        # Get the data from the file
        line = data_file.readline()

        # Display data retrieved
        print(count, ": "开发者_如何学编程, line)

        # add to count sequence
        count += 1


Try removing the "line=data_file.readline()" altogether? I suspect the "for line in data_file:" is also a readline operation.


You for loop is iterating over the data_file and your readline() is competing with it. Erase the line = data_file.readline() line of your code for this result:

# Read all lines in data_file
count = 1
for line in data_file:
    # Display data retrieved
    print(count, ": ", line)

    # add to count sequence
    count += 1


for line in data_file already gets the text of each line for you - the subsequent call to readline then gets the following line. In other words, removing the call to readline will do what you want. At the same time, you don't need to keep track of an accumulator variable yourself - python has a built-in way of doing this using enumerate - in other words:

data_file = open('line_numbers.txt', 'r')
for count, line in enumerate(data_file):
    ...
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号