标签: python html
我总是发现以这种格式存储的html源代码中的链接,问题是我如何将这些链接改回原来的样式?
非常感谢!
答案 0 :(得分:4)
使用urllib.unquote
答案 1 :(得分:0)
urllib.unquote()本身可能仍会因抛出异常而导致问题:
UnicodeDecodeError:'ascii'编解码器无法解码位置n的字节0xc3:序号不在范围内(128)
在这种情况下尝试: print urllib.unquote(“Ober%C3%B6sterreich.txt”)。decode(“utf8”)