How to create a bytes object from a list in Python

3 Answers

0 votes
byte_list = [1, 0, 255, 65, 97, 122]
 
byte_obj = bytes(byte_list)
 
for item in byte_obj:
    print(item)
 

'''
run:

1
0
255
65
97
122

'''

 



answered Sep 15, 2020 by avibootz
edited Jul 12 by avibootz
0 votes
byte_list = [65, 101, 114, 121, 110]  

byte_obj = bytes(byte_list)

print(byte_obj)  


'''
run:

b'Aeryn'

'''

 



answered Jul 12 by avibootz
0 votes
char_list = ['A', 'e', 'r', 'y', 'n']

byte_obj = ''.join(char_list).encode('utf-8')

print(byte_obj)  



'''
run:

b'Aeryn'

'''

 



answered Jul 12 by avibootz

Related questions

1 answer 259 views
3 answers 201 views
201 views asked Sep 15, 2020 by avibootz
1 answer 237 views
1 answer 257 views
...