from urllib import parse
str = '中国'
print(parse.quote(str))    # 对中文进行编码
print(parse.unquote(parse.quote(str)))    # 进行解码操作
 
# 输出结果:
# %E4%B8%AD%E5%9B%BD
# 中国

原文链接:https://blog.csdn.net/u014663232/article/details/103501574