91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

平罗县| 大厂| 罗甸县| 常熟市| 苏尼特左旗| 聂荣县| 甘孜县| 绿春县| 栾川县| 鄂托克前旗| 商都县| 白玉县| 株洲县| 搜索| 齐齐哈尔市| 东辽县| 新宾| 将乐县| 黄平县| 洪洞县| 肇源县| 常熟市| 马鞍山市| 九江县| 抚松县| 东海县| 文化| 浮山县| 伊金霍洛旗| 泊头市| 桦川县| 兴海县| 云安县| 龙岩市| 海兴县| 南部县| 锡林浩特市| 健康| 天门市| 房产| 苍南县|