gpt4 book ai didi

python - HexString 到打包的 EBCDIC 字符串

转载 作者:太空宇宙 更新时间:2023-11-03 20:17:23 26 4
gpt4 key购买 nike

我需要将“767f440128e1a00a”十六进制数据转换为打包的 EBCDIC 字符串。我希望所有 result 结果都变成一个字符串,但 python 给出 Unicode 错误 UnicodeDecodeError: 'utf-8' codec can't Decode byte 0xe1 inposition 0: Unexpected end of data

s='767f440128e1a00a'
output = []
DDF = [1]
distance = 0
for y in range (1,len(s[2:])):
for x in DDF:
if s[2:][distance:x*2+distance]!='':
output.append(s[2:][distance:x*2+distance])
else:
continue
distance += x*2
print(output)
final=[]
result=''
bytearrya=[]
for x in output:
result=(str(bytearray.fromhex(x).decode()))
x = codecs.decode(x, "hex")
final.append(x)

最佳答案

这是基于 Python byte representation of a hex string that is EBCDIC 的代码提到“根据this,需要使用‘cp500’进行解码”

Codec / Aliases                            / Languages
cp500 / EBCDIC-CP-BE, EBCDIC-CP-CH, IBM500 / Western Europe
my_string_in_hex = '767f440128e1a00a'
my_bytes = bytearray.fromhex(my_string_in_hex)
print(my_bytes)

my_string = my_bytes.decode('cp500')
print(my_string)

输出:

enter image description here

关于python - HexString 到打包的 EBCDIC 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58364186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com