python 中的 urlencode 编码与 urldecode 解码
Posted 邹奇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中的 urlencode 编码与 urldecode 解码相关的知识,希望对你有一定的参考价值。
文章目录
脚本示例
- 在 python 中进行 UrlEncoded 与 UrlDecode 操作需要导入 urllib 相关函数库:
import urllib.parse
- 脚本示例如下:
import urllib.parse
gb_url="http://www.baidu.com"
def start():
print("hello imxiaoqi\\n")
print("原值 = " + gb_url)
# urlencode 编码操作
gb_url_encode = urllib.parse.quote(gb_url)
print("urlencode 编码后值 = " + gb_url_encode)
print("\\n")
# urldecode 解码操作
print("urldecode 解码前值 = " + gb_url_encode)
gb_url_decode = urllib.parse.unquote(gb_url_encode)
print("urldecode 解码后值 = " + gb_url_decode)
# 入口函数
if __name__ == '__main__':
start()
运行结果
- 运行如下:
success
技术永不眠!我们下期见!
以上是关于python 中的 urlencode 编码与 urldecode 解码的主要内容,如果未能解决你的问题,请参考以下文章
python 中的 urlencode 编码与 urldecode 解码
python接口自动化-urlencode编码%E6%82%A0%E6%82%A0与解码