bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence is not empty, false otherwise
container.__iter__() Return an iterator object. The object is required to support the iterator protocol described below. If
clear() Remove all items from the dictionary.
bytearray.endswith(suffix[, start[, end]]) Return True if the binary data ends with the specified suffix
bytearray.rindex(sub[, start[, end]]) Like rfind() but raises
class.mro() This method can be overridden by a metaclass to customize the method resolution order for its instances. It is called
str.zfill(width) Return a copy of the string left filled with ASCII '0' digits to make a string of length width
str.swapcase() Return a copy of the string with uppercase characters converted to lowercase and vice versa. Note that it is
bytes.expandtabs(tabsize=8) bytearray.expandtabs(tabsize=8) Return a copy of the sequence where all ASCII tab characters
bytes.count(sub[, start[, end]]) bytearray.count(sub[, start[, end]]) Return the number of non-overlapping occurrences
Page 19 of 20