record-11 编码解码

Posted minkillmax

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了record-11 编码解码相关的知识,希望对你有一定的参考价值。

from urllib.parse import quote,unquote

#字节码
#%E6%88%90%E9%83%BD

#quote 字符串-字节码  编码
#unquote 字节码-字符串  解码

s=‘成都‘
s1=quote(s,encoding=‘utf8‘)
print(s1)
s4=unquote(s1)
print(s4)


#字节码
#\xe6\x88\x90\xe9\x83\xbd

#encode() 编码 字符串-字节码
#decode() 解码 字节码-字符串

s=‘成都‘
s2=s.encode()
print(s2)

s3=s2.decode()
print(s3)



url1=‘http://www.sojson.com/open/api/weather/json.shtml?city=‘+s1  #%E6%88%90%E9%83%BD  这类字节码可以和字符串直接进行+运算
print(url1)
url2=‘http://www.sojson.com/open/api/weather/json.shtml?city=‘+s2  #\xe6\x88\x90\xe9\x83\xbd  这类字节码不能和字符串直接进行+运算
print(url2)

  

以上是关于record-11 编码解码的主要内容,如果未能解决你的问题,请参考以下文章

使用OpenSSL进行Base64编码和解码

JavaScript中的编码解码

编码 代码 解码 分别是啥 以及他们之间的关系

ffmpeg实时编码解码部分代码

URL中文编码解码

PHP解码url编码问题