美文网首页
Java的getBytes()对应python里面的bytear

Java的getBytes()对应python里面的bytear

作者: 伪装的狼 | 来源:发表于2020-01-01 13:03 被阅读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

    相关文章

      网友评论

          本文标题:Java的getBytes()对应python里面的bytear

          本文链接:https://www.haomeiwen.com/subject/mjgwoctx.html