Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
424 views
in Technique[技术] by (71.8m points)

text - Adding line numbers to the output in Python

For example, if the input file is:

def main():
    for i in range(10):
        print("I love Python")
    print("Good bye!")

Then the output would be:

1   def main():
2       for i in range(10):
3           print("I love Python")
4       print("Good bye!")

I have difficulty in adding lines to each line. My program is:

filename = input("Please enter a file name: ")
count = 0

openfile = open(filename, "r")

for lines in openfile:
    linenumbers = openfile.write(str(count)+''+lines)
    count += 1

print(count)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use a with statement to close the file buffer and just concatenate strings:

with open('file.txt', 'r') as program:
    data = program.readlines()

with open('file.txt', 'w') as program:
    for (number, line) in enumerate(data):
        program.write('%d  %s' % (number + 1, line))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...