Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of python operating File Mode

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly shows you the "python operation file mode example analysis", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "python operation file mode example analysis" this article.

1. Read-only mode (read-only data r).

F = open ('my_file.txt',' rb') f_bytes = f.read () print (f_bytes) print (f_bytes.decode ('utf-8')) f.close ()

2. Write-only mode (rewrite data w), write data in binary mode or append data in write-only mode.

Write_file = open ('demo1.jpg', mode='wb') read_file = open (' demo.jpg', mode='rb') write_file.write (read_file.read ()) read_file.close () write_file.close ()

3. Read-write mode (append data a). If you don't want the original data to be overwritten, you can use the way to append and write data.

Read_write_file = open ('append_file.txt', mode='r+', encoding='utf-8') print (read_write_file.read ()) read_write_file.write ('\ nstrive to make progress every day') print (read_write_file.read ()) read_write_file.close () above is all the contents of the article "sample Analysis of python operating File Mode". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report