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"))
這些是一些常用的編碼和解碼方法,具體使用哪種方法取決于你的需求和編碼格式。