【脚本语言系列】关于Python操作数据二进制数据,你需要知道的事情

【脚本语言系列】关于Python数据处理二进制数据,你需要知道的事

如何使用二进制数据

字节和字节数组

# -*- coding:utf-8 -*-
# only for Python3.*
blist =[12,23,34,45]
# variable
this_byte_array = bytearray(blist)
print this_byte_array
this_byte_array[1] = 127
print this_byte_array

# invariable
this_bytes = bytes(blist)
print this_bytes
this_bytes[1] = 127
print this_bytes
"-
"-
[12, 23, 34, 45]



---------------------------------------------------------------------------

TypeError                                 Traceback (most recent call last)

<ipython-input-21-9bbd1152090e> in <module>()
     11 this_bytes = bytes(blist)
     12 print this_bytes
---> 13 this_bytes[1] = 127
     14 print this_bytes


TypeError: 'str' object does not support item assignment

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值