如何在Python中取消引用URL引用的UTF-8字符串

TIM*_*MEX 2 python

thestring = urllib.quote(thestring.encode('utf-8'))
Run Code Online (Sandbox Code Playgroud)

这将编码它.怎么解码呢?

Gre*_*reg 6

关于什么

backtonormal = urllib.unquote(thestring)
Run Code Online (Sandbox Code Playgroud)