class set([iterable]) class frozenset([iterable]) Return a new set or frozenset object whose elements are taken
str.rstrip([chars]) Return a copy of the string with trailing characters removed. The chars argument is a string specifying
bytearray.count(sub[, start[, end]]) Return the number of non-overlapping occurrences of subsequence sub in the range
str.format(*args, **kwargs) Perform a string formatting operation. The string on which this method is called can contain literal
bytes.zfill(width) bytearray.zfill(width) Return a copy of the sequence left filled with ASCII b'0'
str.rsplit(sep=None, maxsplit=-1) Return a list of the words in the string, using sep as the delimiter string. If maxsplit
bytes.rfind(sub[, start[, end]]) bytearray.rfind(sub[, start[, end]]) Return the highest index in the sequence where
static bytes.maketrans(from, to) static bytearray.maketrans(from, to) This static method returns a translation table
bytes.center(width[, fillbyte]) bytearray.center(width[, fillbyte]) Return a copy of the object centered in a sequence
classmethod float.fromhex(s) Class method to return the float represented by a hexadecimal string s. The string s
Page 2 of 20