9、字符串转为字节 s="apple" bytes(s, encoding="utf-8") #注意要加上编码方式 out: b'apple' #通常字节用b""方式表示 10、数字转为字符串 i=100 str(i) out: '100'