Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

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

1 answer 68 views
3 answers 260 views
1 answer 283 views
1 answer 258 views
2 answers 120 views
1 answer 182 views
1 answer 165 views
165 views asked Sep 16, 2020 by avibootz
...