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

How does python use bytes to process files

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

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "python how to use byte processing files", the article explains the content is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "python how to use byte processing files" bar!

1. You can add the'b 'character to the mode parameter. All the same methods that are suitable for file objects. However, each method expects and returns a bytes object.

> with open (`dog_ breeds.txt`, 'rb') as reader: > print (reader.readline ()) b'Pug\ n'

2. When you open the file and read these bytes separately, you can see that it is indeed an png file:

> with open ('jack_russell.png',' rb') as byte_reader: > print (byte_reader.read (1)) > print (byte_reader.read (3)) > print (byte_reader.read (2)) > print (byte_reader.read (1)) > print (byte_reader.read (1)) b'\ x89 thanks for your reading. The above is the content of "how python uses bytes to deal with files". After the study of this article, I believe you have a deeper understanding of how python uses bytes to deal with files, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

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