Python提供了多种编码和解码的方法。以下是一些常用的方法:
string = "Hello, World!"
encoded_string = string.encode("utf-8")
bytes_object = b"Hello, World!"
decoded_string = bytes_object.decode("utf-8")
number = 42
string = str(number)
string = "Hello, World!"
bytes_object = bytes(string, "utf-8")
string = "Hello, World!"
bytearray_object = bytearray(string, "utf-8")
import base64
bytes_object = b"Hello, World!"
base64_string = base64.encodebytes(bytes_object)
import base64
base64_string = "SGVsbG8sIFdvcmxkIQ=="
bytes_object = base64.decodebytes(base64_string.encode("utf-8"))
这些是一些常用的编码和解码方法,具体使用哪种方法取决于你的需求和编码格式。