a = 'abc' c = a.encode() # abc string into a byte array d = c.decode() #Decode the byte array of variable c into the corresponding string print(a,c,d ...
確定! 回上一頁