Python processes text line break instance code, and python line feed
This article focuses on how Python processes text line breaks.
Each line of the source file is followed by a carriage return, so when the following output is used, there will be one more line in the middle.
Try: with open ("F: \ hjt.txt") as f: for line in f: print (line) character t FileNotFoundError: print ("file read error ")
There are two solutions:
1. print with end = '', indicating no line feed
Try: with open ("F: \ hjt.txt") as f: for line in f: print (line, end = '') using t FileNotFoundError: print ("file reading error ")
2. Use the strip () function to remove the line breaks for each row.
Try: with open ("F: \ hjt.txt") as f: for line in f: line = line. strip ('\ n') print (line) failed t FileNotFoundError: print ("An error occurred while reading the file ")
Summary
The above is all the content of this article about Python's code for handling text line breaks. I hope it will be helpful to you. If you are interested, you can continue to refer to other related topics on this site. If you have any shortcomings, please leave a message. Thank you for your support!