python字串與url編碼的轉換例項

2022-10-04 19:39:30 字數 444 閱讀 2755

主要應用的場景

爬蟲生成帶搜尋詞語的**

1.字串轉為url編碼

import urllib

poet_name = "李白"

url_code_name = urllib.quote(poet_name)

print url_code_name

#輸出#%e6%9d%8e%e7%99%bd

2.url編碼轉為字串

import urllib

url_code_name = "%e6%9d%8e%e7%99%bd"

name = urllib.unquote(urwww.cppcns.coml_程式設計客棧code_name)

printwww.cppcns.com name

#輸出#李白

本文標題: python字串與url編碼的轉換例項

本文位址:

jQuery編碼 解碼URL字串

簡單的jquery 段可對url字串 http位址 中的href引數進行編碼 解碼 換 以便可以在網頁上正確檢視它們。例如,20是html的等價空格,40是與號 var url location attr href get current url or var url folder index.ht...

python與go字串編碼

python中字串 str 是unicode編碼的,所以中文和英文本母都佔兩個位元組 乙個位元組的話,最大為256 英文本母數值與ascii保持一致。a 啦 print unicode編碼為 ord a print 英文本母 s編碼為 d b ord b b a.encode encoding ut...

Python字串編碼

在python中有些特殊的地方是存在兩種字串,分別為str和unicode字串,他們都繼承自basestring。如 s hello world s為str us u hello world us為unicode。使用help str 和help unicode 可以檢視各自說明,他們都有decod...