str(yourBytes,encodeing='utf-8')

或者

string = "".join(map(chr, yourBytes))

第二种不必考虑编码问题,好用。

 

相关文章: