Python3下string(字符串)转为bytes(字节)类型

2022-05-03 00:00:00 字符串 字节 转为
"""
皮蛋编程(https://www.pidancode.com)
创建日期:2022/4/4
功能描述:Python下将字符串转换成bytes类型
"""
message = 'pidancode.com'

# string转为bytes
byte_message = bytes(message, 'utf-8')
print(byte_message)

# 输出: b'pidancode.com'

代码在python3.9下测试通过。

相关文章