发布网友 发布时间:2022-04-06 05:29
共3个回答
懂视网 时间:2022-04-06 09:51
1.byte和str互转
b = b"example" s = "example" bytes(s, encoding = "utf8") str(b, encoding = "utf-8")
2.byte和int互转
b=b'x01x02' num=int.from_bytes(b,'little') b1=num.to_bytes(2,'little')
3.byte和float互转
import struct s=b'@zQx16' def byteToFloat(b): return struct.unpack('!f',s)[0] def floatToBytes(f): bs = struct.pack("f",f) return bytes((bs[3],bs[2],bs[1],bs[0])) f1=byteToFloat(s) floatToBytes(f1)
4.str和bytearray互转
str1='aaabb' ba=bytearray(str1,encoding='utf-8') str2=ba.decode('utf8')
推荐教程:《Python教程》
热心网友 时间:2022-04-06 06:59
在python中的数据类型转换函数共有五类:热心网友 时间:2022-04-06 08:17
int float str 常用就这三种