1、二进制转字符串# bytes转字符串方式一b=b'\xe9\x80\x86\xe7\x81\xab' string=str(b,'utf-8') #建议使用此种方式print(string) # bytes转字符串方式 ...
確定! 回上一頁