urllib.parse.urlencode()
时间: 2023-11-04 17:05:58 浏览: 86
Python3的urllib.parse常用函数小结(urlencode,quote,quote_plus,unquote,unquote_plus等)
可以将一个字典转换为url参数字符串,例如:
```python
import urllib.parse
params = {'key1': 'value1', 'key2': 'value2'}
query_string = urllib.parse.urlencode(params)
print(query_string) # 输出: key1=value1&key2=value2
```
注意,urlencode() 方法默认使用 utf-8 编码,如果需要使用其他编码,可以使用 encode() 方法先将参数编码为指定编码。
阅读全文