How to create bytes object in Python

3 Answers

0 votes
bytes_object = bytes(b"abcd")
  
print(type(bytes_object))

print(bytes_object)  

for item in bytes_object:
    print(item)
  
     
     
     
'''
run:
   
<class 'bytes'>
b'abcd'
97
98
99
100
      
'''

 



answered Sep 15, 2020 by avibootz
edited Jun 17, 2022 by avibootz
0 votes
bytes_object = b'\x65\x66\x67'
  
print(type(bytes_object))

print(bytes_object)  

for item in bytes_object:
    print(item)
  
     
     
     
'''
run:
   
<class 'bytes'>
b'efg'
101
102
103
      
'''

 



answered Jun 17, 2022 by avibootz
0 votes
bytes_object = 'python'.encode('utf-8')
  
print(type(bytes_object))

print(bytes_object)  

for item in bytes_object:
    print(item)
  
     
     
     
'''
run:
   
<class 'bytes'>
b'python'
112
121
116
104
111
110
      
'''

 



answered Jun 17, 2022 by avibootz

Related questions

3 answers 219 views
1 answer 260 views
1 answer 237 views
2 answers 105 views
1 answer 170 views
1 answer 151 views
151 views asked Sep 16, 2020 by avibootz
...