在Python中,可以使用urllib.parse库中的urlencode和parse_qs函数来实现urlencode和urldecode操作。
from urllib.parse import urlencode
params = {
'name': 'Alice',
'age': 25,
'city': 'New York'
}
query_string = urlencode(params)
print(query_string)
输出结果为:
name=Alice&age=25&city=New+York
from urllib.parse import parse_qs
query_string = 'name=Alice&age=25&city=New+York'
params = parse_qs(query_string)
print(params)
输出结果为:
{'name': ['Alice'], 'age': ['25'], 'city': ['New York']}
这样就可以实现urlencode和urldecode的操作。