您好,登錄后才能下訂單哦!
這篇文章主要講解了python在內存中讀寫str和二進制數據的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
我就廢話不多說了,還是直接看代碼吧!
# 利用python在內存中讀寫str和二進制數據 from io import StringIO from io import BytesIO f = StringIO() print(f.write('hello ')) # 6 print(f.write('world!')) # 6 print(f.getvalue()) # hello world! f = BytesIO() print(f.write('中文'.encode('utf-8'))) # 6 print(f.getvalue()) # b'\xe4\xb8\xad\xe6\x96\x87'
補充知識:python二進制轉到float
看代碼吧!
# -*- coding: utf-8 -*- """ Created on Tue Dec 3 14:38:04 2019 @author: xuguanghui """ import numpy as np mlplib_label = r"C:\Users\xuguanghui\Desktop\106421_mlplib.lab" train_label = r"C:\Users\xuguanghui\Desktop\106421_train.lab" mlplib_txt = r"C:\Users\xuguanghui\Desktop\106421_mlplib.txt" train_txt = r"C:\Users\xuguanghui\Desktop\106421_train.txt" mlplib_lab = np.fromfile(mlplib_label, dtype=np.int32).reshape(-1, 892) train_lab = np.fromfile(train_label, dtype=np.float32).reshape(-1, 892) np.savetxt(mlplib_txt, mlplib_lab, fmt='%d') np.savetxt(train_txt, train_lab, fmt='%d')
看完上述內容,是不是對python在內存中讀寫str和二進制數據的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。