• python 用 '\xe4\xbd\xa0' 转换为 b'\xe4\
  • python
    2.00元

# 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 类型

  • 旺盛的绿萝    2020-01-03 13:28:44
  • 阅读 1077    收藏 0    回答 1
  • 邀请
  • 收藏
  • 分享
发送
登录 后发表评论
  • 51testing软件测试圈微信