在Python中,你可以使用urllib.parse
模組中的quote
函數來將中文網址轉換為百分號編碼。以下是一個簡單的例子:
from urllib.parse import quote
chinese_url = "https://你的網址.com/中文路徑"
encoded_url = quote(chinese_url)
print(encoded_url)
這樣,encoded_url
中的中文部分就會以百分號編碼呈現,可以用於網址中。請記得在實際應用中使用編碼後的 URL。