亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 在內存中讀寫:StringIO / BytesIO

發布時間:2020-08-06 09:52:51 來源:網絡 閱讀:1193 作者:虎皮喵的喵 欄目:編程語言



操作字符串,使用StringIO

#!/usr/bin/python
# -*- coding: utf-8 -*-

from io import StringIO

f = StringIO()
f.write('hello')

print(f.getvalue())

運行結果:

Traceback (most recent call last):
  File "stringio.py", line 6, in <module>
    f.write('hello')
TypeError: unicode argument expected, got 'str'

在python 2.7版本中出錯,在python 3版本中正常運行,于是百度了一下,把

from io import StringIO

改為

from io import BytesIO as StringIO


繼續在python2.7版本中運行,正常了。

#!/usr/bin/python
# -*- coding: utf-8 -*-

#from io import StringIO
#from io import BytesIO
from io import BytesIO as StringIO
f = StringIO()
f.write('hello')

print(f.getvalue())

運行結果:

hello




操作二進制文件,使用BytesIO

以下代碼在python2.7運行又有問題,目前時間不夠,為節省時間,在python3平臺運行,成功

#!/usr/bin/python
# -*- coding: utf-8 -*-

from io import BytesIO
f = BytesIO()
f.write('中文'.encode('utf-8'))
print(f.getvalue())

運行結果:

hello
b'\xe4\xb8\xad\xe6\x96\x87'




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

城口县| 北京市| 马边| 新巴尔虎左旗| 都兰县| 大名县| 巍山| 金昌市| 兰州市| 巴林左旗| 遂昌县| 精河县| 江孜县| 于都县| 峨边| 文水县| 合山市| 神池县| 佛坪县| 娱乐| 奉化市| 商水县| 白朗县| 舟曲县| 介休市| 鄂托克前旗| 常熟市| 沐川县| 重庆市| 嘉黎县| 孝感市| 枣庄市| 武城县| 二连浩特市| 福鼎市| 永清县| 广汉市| 叙永县| 调兵山市| 称多县| 休宁县|