-
什么是明文
“明文”是可以是文本,音乐,可以编码成mp3文件。明文可以是图像的,可以编码为gif、png或jpg文件。明文是电影的,可以编码成wmv文件。不一而足。
-
什么是编码?
把明文变成计算机语言 -
为什么要用Unicode来编码?
可以记录所有语言,而且编码方式不止一种 - python str与bytes之间的转换
-
# bytes object b = b"example" # str object s = "example" # str to bytes bytes(s, encoding = "utf8") # bytes to str str(b, encoding = "utf-8") # an alternative method # str to bytes str.encode(s) # bytes to str bytes.decode(b)
时间: 2024-10-09 20:10:27