用Python urllib可以对URLCode进行编码/解码

#urllib.unquote

#urllib.quote

#可以做URL CODE编码/解码

例如:

testUrlEncode = 'http://huati.weibo.cn/ht?k=%E7%A8%8B%E9%A2%96%E5%A9%95&from=rank'
print testUrlEncode 
print urllib.unquote(testUrlEncode)


你可能感兴趣的:(用Python urllib可以对URLCode进行编码/解码)