在Python中,可以使用quopri
模塊來實現quoted-printable編碼。下面是一個示例代碼:
import quopri
text = "你好,世界!"
encoded_text = quopri.encodestring(text.encode("utf-8"))
print(encoded_text.decode()) # 輸出:=E4=BD=A0=E5=A5=BD=EF=BC=8C=E4=B8=96=E7=95=8C=EF=BC=81
在上述代碼中,我們首先導入了quopri
模塊。然后,我們定義了一個字符串text
,該字符串包含要進行quoted-printable編碼的文本。接下來,我們使用text.encode("utf-8")
將文本編碼為UTF-8格式的字節串,并使用quopri.encodestring()
函數對字節串進行quoted-printable編碼。最后,我們使用.decode()
方法將編碼后的字節串解碼為字符串,并打印輸出結果。
注意:quopri.encodestring()
函數返回的是編碼后的字節串,因此需要使用.decode()
方法將其解碼為字符串。