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 170 views
1 answer 151 views
151 views asked Sep 16, 2020 by avibootz
1 answer 169 views
1 answer 166 views
1 answer 181 views
...