在Python中,可以使用str對象的encode()和decode()方法來進行編碼和解碼轉換。下面是一些常用的編碼轉換示例:
s = "Hello, 你好"
encoded_str = s.encode("utf-8")
print(encoded_str) # b'Hello, \xe4\xbd\xa0\xe5\xa5\xbd'
b = b'Hello, \xe4\xbd\xa0\xe5\xa5\xbd'
decoded_str = b.decode("utf-8")
print(decoded_str) # Hello, 你好
s = "Hello, 你好"
encoded_str = s.encode("utf-8")
decoded_str = encoded_str.decode("utf-8")
print(decoded_str) # Hello, 你好
s = "Hello, 你好"
encoded_str = s.encode("gbk")
decoded_str = encoded_str.decode("gbk")
print(decoded_str) # Hello, 你好
注意:在進行編碼和解碼轉換時,需要確保源字符串和目標編碼格式是兼容的,否則會出現編碼錯誤。