Python 中parse.quote类似JavaScript encodeURI() 函数
Posted shaomine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 中parse.quote类似JavaScript encodeURI() 函数相关的知识,希望对你有一定的参考价值。
from urllib import parse
jsRet = ‘roleO%2f‘
print(parse.unquote(jsRet))
print(parse.quote(jsRet))
输出:
roleO/
roleO%252f
以上是关于Python 中parse.quote类似JavaScript encodeURI() 函数的主要内容,如果未能解决你的问题,请参考以下文章