Java的getBytes()对应python里面的bytear
2020-01-01 本文已影响0人
伪装的狼
Java的getBytes():
byte[] a = "abc".getBytes();
for(int i : a){
System.out.print(i + " ");
}
Python表示方法:
def demo():
a = "abc"
b = bytearray(a.encode())
for i in range(len(b)):
print(b[i],end=" ")
输出都为:
97 98 99