[119, 101, 108, 108, 32, 100, 111, 110, 101]
要求把转成文字,提示为decode()???{:10_247:} 本帖最后由 zltzlt 于 2020-8-2 17:22 编辑
print(''.join(chr(i) for i in )) zltzlt 发表于 2020-8-2 17:19
decode()
???
是这样的呗:
temp =
for i in temp:
print(chr(i),end='') 靳子轩 发表于 2020-8-2 17:20
decode()
???
完全不用 decode() zltzlt 发表于 2020-8-2 17:20
完全不用 decode()
哦,看下去 靳子轩 发表于 2020-8-2 17:21
哦,看下去
偷看标准答案
byte = bytes()
word = byte.decode("utf-8")
print(word)
byte = bytes()
word = byte.decode("utf-8")
print(word)
页:
[1]