How to get the length of a bytes object in Python

2 Answers

0 votes
bytes_date = 'python'.encode('utf-8')

print(type(bytes_date))

print(len(bytes_date))  
 
 
 
 
 
'''
run:
 
<class 'bytes'>
6
 
'''

 



answered Jun 17, 2022 by avibootz
0 votes
bytes_date = b'\x65\x66\x67'

print(type(bytes_date))

print(len(bytes_date))  
 
 
 
 
 
'''
run:
 
<class 'bytes'>
3
 
'''

 



answered Jun 17, 2022 by avibootz

Related questions

1 answer 98 views
1 answer 204 views
1 answer 192 views
192 views asked Sep 16, 2020 by avibootz
1 answer 201 views
1 answer 201 views
1 answer 223 views
...