Python processes text line break instance code, and python line feed

Source: Internet
Author: User
Tags one more line

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!

Related Article

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.