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

溫馨提示×

溫馨提示×

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

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

python在內存中讀寫str和二進制數據的方法

發布時間:2020-07-31 09:46:59 來源:億速云 閱讀:251 作者:小豬 欄目:開發技術

這篇文章主要講解了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和二進制數據的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

股票| 长子县| 凤台县| 平南县| 汝城县| 闵行区| 肃南| 江阴市| 平潭县| 时尚| 双辽市| 托里县| 慈溪市| 灵武市| 平谷区| 通山县| 城口县| 依兰县| 福鼎市| 醴陵市| 台江县| 扶风县| 嫩江县| 新昌县| 常州市| 南川市| 甘泉县| 惠州市| 桃源县| 白河县| 谷城县| 泰安市| 望奎县| 六枝特区| 马龙县| 河源市| 绍兴县| 呈贡县| 桦川县| 宜黄县| 雷波县|