python中,怎么样把特定的字符串转为二进制序列?
发布网友
发布时间:2022-04-25 15:53
我来回答
共2个回答
热心网友
时间:2022-04-18 10:08
只是要在字符串的基础上每隔2个字符加个间隔符号吗?
string = "3e210925041f000000a00101120082125ba0000000"
temp_list = []
for index,item in enumerate(list(string)):
temp_list.append(item.upper())
if (index+1)%2 == 0:
temp_list.append(" ")
print(''.join(temp_list))
3E 21 09 25 04 1F 00 00 00 A0 01 01 12 00 82 12 5B A0 00 00 00
热心网友
时间:2022-04-18 11:26
如果是需要pack字符串后,再使用socket进行发送的话,这样应该就可以了
import struct
str1='3e210925041f000000a00101120082125ba0000000'
sdata=struct.pack('%ds'%len(str1),str1)
...
s.send(sdata)