How to create bytearray in Python

2 Answers

0 votes
ba = bytearray([1, 0, 255, 65, 97, 122])

for item in ba:
    print(item)

   
   
   
'''
run:
 
1
0
255
65
97
122
    
'''

 



answered Sep 15, 2020 by avibootz
0 votes
ba = bytearray(b"abcd")

for item in ba:
    print(item)

   
   
   
'''
run:
 
97
98
99
100
    
'''

 



answered Sep 15, 2020 by avibootz

Related questions

...