Day24:IO模組的使用
今天學習IO模組的使用,主要分為StringIO的使用和BytesIO的使用~
1.StringIO的使用
# 類似檔案的緩衝區
from io import StringIO
cache_file = StringIO()
print(cache_file.write('hello world')) # 11
print(cache_file.seek(0)) # 0
print(cache_file.read()) # hello world
print(cache_file.close()) # 釋放緩衝區
-
StringIO經常被用來作字串的快取,因為StringIO的一些介面和檔案操作是一致的,也就是說同樣的程式碼,可以同時當成檔案操作或者StringIO操作;
-
要讀取StringIO,可以用一個str初始化StringIO,然後像讀檔案一樣讀取;
-
當使用read()方法讀取寫入的內容時,則需要先用seek()方法讓指標移動到最開始的位置,否則讀取不到內容(寫入後指標在最末尾);
-
getvalue()方法:直接獲得寫入後的str;
-
close()方法:在關閉檔案的緩衝區之後就不能再進行讀寫操作了;
2.BytesIO的使用
# 類似檔案的緩衝區
from io import BytesIO
bytes_file = BytesIO()
bytes_file.write(b'hello world')
bytes_file.seek(0)
print(bytes_file.read()) # b'hello world'
bytes_file.close()
-
StringIO操作的只能是str,如果要操作二進位制資料,就需要使用BytesIO;
-
BytesIO實現了在記憶體中讀寫bytes,寫入的不是str,而是經過UTF-8編碼的bytes;
-
要讀取BytesIO,可以用一個bytes初始化BytesIO,然後像讀檔案一樣讀取;
相關文章
- python記錄day24 模組的語法Python
- Profinet遠端IO模組:模擬量模組_軟體組態說明
- wtforms模組的使用ORM
- pymysql模組的使用MySql
- python IO模組【二】:open函式詳解Python函式
- openpyxl模組的日常使用
- Flask:sqlalchemy模組的使用FlaskSQL
- Python logging模組的使用Python
- glom模組的使用(一)
- glom模組的使用(二)
- Python中模組的使用Python
- 深入理解nodejs的非同步IO與事件模組機制NodeJS非同步事件
- 插片式遠端 IO模組:雙通道PNP和NPN高速計數模組案例說明
- Python模組 adorner 的使用示例Python
- BeautifulSoup模組的使用方法
- 爬蟲-urllib模組的使用爬蟲
- Python 中argparse模組的使用Python
- odoo的Aeroo Reports模組使用。Odoo
- 使用typescript開發angular模組(編寫模組)TypeScriptAngular
- M31系列LoRa分散式IO模組功能簡介分散式
- Python中yaml模組的使用教程PythonYAML
- 【python基礎】os模組的使用Python
- nodejs 日誌模組 winston 的使用NodeJS
- Tengine新增nginx upstream模組的使用Nginx
- python非同步asyncio模組的使用Python非同步
- 插片式遠端IO模組:單通道PNP和NPN編碼器模組功能和安裝方法
- 使用 Spring Boot 構建可重用的模擬模組Spring Boot
- Paramiko模組簡單使用
- python中的itertools模組簡單使用Python
- Python paramiko模組的安裝與使用Python
- 爬蟲-urllib3模組的使用爬蟲
- node.js之path模組的使用Node.js
- Node.js之readline模組的使用Node.js
- 序列化模組,隨機數模組,os模組,sys模組,hashlib模組隨機
- 如何使用`open-uri`模組
- Nginx使用SSL模組配置httpsNginxHTTP
- python inspect模組簡單使用Python
- python logging模組使用總結Python