为啥我执行这个
import urllib.parse
print(urllib.parse.urlencode("中文"))
都报错?
1
westoy 2020-11-22 17:03:38 +08:00
urlencode 的不是 dict 么, 你要的是 quote 吧......
|
2
h175h32 OP 我擦 搜了半天 原来 python3.0 后的编码器 urlencode 更新后改为 quote_plus,函数名改了 可是百度搜到还有很多用这个 urlencode 函数的文章
|
4
summerwar 2020-11-22 17:10:42 +08:00
搜问题的时候加上 python3 否则搜出来的可能是 2.7 的答案
|
5
westoy 2020-11-22 17:12:52 +08:00
@h175h32
python 里 urlencode 和 quote/quote_plus 本身使用没变过, 一直是那样, 我怀疑你把 php 的 urlencode 给记叉了.... 只是 2.7 时 urlencode 、quote/quote_plus 是在 urllib 下面, 原本的 urlparse 更侧重解析 url, 现在统一移到了 urllib.parse 下面 |
6
thedrwu 2020-11-22 17:49:47 +08:00 via Android 4
标题用这个缩写有点歧义
|
7
roudancongji 2020-11-22 18:07:23 +08:00 3
这不是我想看的 py
|
9
imn1 2020-11-22 19:28:40 +08:00
print(urllib.parse.urlencode({'s':"中文"}))
s=%E4%B8%AD%E6%96%87 print(urllib.parse.quote("中文")) %E4%B8%AD%E6%96%87 |
10
BwNVlwSq 2020-11-23 00:04:58 +08:00 via iPhone
py 通红?😜
|
11
bugcoder 2020-11-23 08:49:10 +08:00
Not py diff, but search engine diff
|
13
kevinfk2 2020-11-23 11:20:43 +08:00
我以为是 py
|