Home Backend Development Python Tutorial How to use the open() function in Python to specify the file opening method

How to use the open() function in Python to specify the file opening method

Mar 03, 2017 pm 03:19 PM

File opening methods

When we use the open() function to open a file, there are several opening modes.

'r'->Read-only
'w'->Write-only. If the file already exists, it will be cleared. If it does not exist, it will be created.
'a'-> Append, write to the end of the file
'b'-> Binary mode, such as opening images, audio, and word files.
'+'->Update (readable and writable)

This one with the '+' sign is a bit difficult to understand, let's go through the code to get a feel for it.

with open('foo.txt', 'w+') as f: 
  f.write('bar\n') 
  f.seek(0)  
  data = f.read()
Copy after login

As you can see, the above code can not only be written, but also read. Note that you must first locate the beginning, f.seek(0), otherwise you will read empty data.
Some people may be confused. Since the '+' sign is readable and writable, what is the difference between 'w+' and 'r+'.
That is,
'w+' will clear and create (the file will be cleared if it already exists, and created if it does not exist.)
'r+' will not clear or create

Do not open text files in binary mode
First look at the "weird" phenomenon of the code below.
Assume that under Windows, I have a f.txt file with the following content.

hello
world
Copy after login

Code one,

with open('f.txt', 'r') as f: 
  print f.readlines() 
with open('f.txt', 'rb') as f: 
  print f.readlines()
Copy after login

Output

['hello\n', 'world\n']
['hello\r\n', 'world\r\n']
Copy after login

Code 2,

with open('f.txt', 'rb') as f: 
  data = f.read() 
with open('f.txt', 'w') as f: 
  f.write(data)
Copy after login

Open the file and it becomes like this,

hello^M
world^M
Copy after login

First of all, understand the concepts of line feed character '\n' and carriage return character '\r'.
'\n', newline character (LF, Line-Feed), refers to a new line.
'\r', carriage return (CR, Carriage-Return), refers to returning to the beginning of the line.

Because the newline identifiers under different systems are different.

windows->'\r\n'
unix->'\n'
mac->'\r'
Copy after login

This is why txt under windows has '^M' at the end of the line when it is opened in linux.
This is why I ran a script under Linux to export the game data and opened it in local windows and it became one line.

In fact, text files are also binary files, which are text-encoded binary files. The text files process some invisible characters to increase readability.

In python, you can get the newline identifier of the current system through os.linesep. For example, under Windows, os.linesep is '\r\n'.
When operating the newline flag in python, it doesn't matter what platform it is on, just use '\n'. Python will automatically convert it to different flags according to different systems.

With the above theoretical basis, we can analyze the "weird" phenomenon of the code at the beginning of this article.
In code 1, for files opened in text mode, the newline flag will be processed by python into '\n', while when opened in binary mode, it will be left intact.
In code two, open in binary mode and write in text mode. When opened in binary, it is still '\r\n', and when writing in text mode, python will convert '\n' into '\r\n', so it is actually equivalent to writing '\r\r \n', so there is an extra '^M'.

For more articles related to the usage of the open() function in Python to specify the file opening method, please pay attention to the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? Apr 01, 2025 pm 11:15 PM

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

What are regular expressions? What are regular expressions? Mar 20, 2025 pm 06:25 PM

Regular expressions are powerful tools for pattern matching and text manipulation in programming, enhancing efficiency in text processing across various applications.

How does Uvicorn continuously listen for HTTP requests without serving_forever()? How does Uvicorn continuously listen for HTTP requests without serving_forever()? Apr 01, 2025 pm 10:51 PM

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

What are some popular Python libraries and their uses? What are some popular Python libraries and their uses? Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How to dynamically create an object through a string and call its methods in Python? How to dynamically create an object through a string and call its methods in Python? Apr 01, 2025 pm 11:18 PM

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

See all articles