


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()
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
Code one,
with open('f.txt', 'r') as f: print f.readlines() with open('f.txt', 'rb') as f: print f.readlines()
Output
['hello\n', 'world\n'] ['hello\r\n', 'world\r\n']
Code 2,
with open('f.txt', 'rb') as f: data = f.read() with open('f.txt', 'w') as f: f.write(data)
Open the file and it becomes like this,
hello^M world^M
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'
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!

Python excels in automation, scripting, and task management. 1) Automation: File backup is realized through standard libraries such as os and shutil. 2) Script writing: Use the psutil library to monitor system resources. 3) Task management: Use the schedule library to schedule tasks. Python's ease of use and rich library support makes it the preferred tool in these areas.

To maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.

Python excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.

Python is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.

You can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.

Python is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.

You can learn the basics of Python within two hours. 1. Learn variables and data types, 2. Master control structures such as if statements and loops, 3. Understand the definition and use of functions. These will help you start writing simple Python programs.

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...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 English version
Recommended: Win version, supports code prompts!