酷炫微笑

文章
5
资源
0
加入时间
2年10月21天

Python中的bytes

bytes_lst = [  ('创建bytes',),  ('bytes可哈希',),  ('编码与解码',),  ('常见编码类型',),  ('ord() 与 chr()',),]创建bytes  >>>b = bytes('hi', 'utf-8')  >>>type(b)  <class '...