# 1.已知:
'你好'.encode()
# 输出
b'\xe4\xbd\xa0\xe5\xa5\xbd' # bytes
# ----------------------------------------------
# 现在拥有
'\xe4\xbd\xa0\xe5\xa5\xbd' # type: str
# 需要转化为(关键是 这一步转化不会)
b'\xe4\xbd\xa0\xe5\xa5\xbd' # type: bytes
# 得到:
'你好'
有大佬会做吗?
或者说 除了 encode() 怎么构造出 bytes 类型