Python字符串转化为字节方式

str='zifuchuang'

第一种 b'zifuchuang'
第二种bytes('zifuchuang',encoding='utf-8')
第三种('zifuchuang').encode('utf-8')

你可能感兴趣的:(编码解码)