str.format_map(mapping) Similar to str.format(**mapping), except that mapping is used directly and
str.center(width[, fillchar]) Return centered in a string of length width. Padding is done using the specified fillchar
str.translate(table) Return a copy of the string in which each character has been mapped through the given translation table
bytearray.translate(table[, delete]) Return a copy of the bytes or bytearray object where all bytes occurring in the optional
bytearray.rpartition(sep) Split the sequence at the last occurrence of sep, and return a 3-tuple containing the part
bytes.capitalize() bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character
bytes.decode(encoding="utf-8", errors="strict") bytearray.decode(encoding="utf-8", errors="strict") Return a string
bytearray.lower() Return a copy of the sequence with all the uppercase ASCII characters converted to their corresponding lowercase
bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character, and the first byte capitalized
str.rindex(sub[, start[, end]]) Like rfind() but raises
Page 5 of 20