1.str转换成bytes两种方法:
1)bytes(s, encoding = "utf8")
2)str.encode(s)
2.bytes转换成str两种方法:
1)str(b, encoding = "utf-8")
2)bytes.decode(b)