Aug-23-2021, 03:24 PM
(This post was last modified: Aug-23-2021, 03:26 PM by deanhystad.)
The same way you get the number of items in any collection; len(collection).
x = b'123456789' print(len(x))
Output:9