str.format_map()

str.format_map(mapping) Similar to str.format(**mapping), except that mapping is used directly and

2016-10-07 17:43:09
str.center()

str.center(width[, fillchar]) Return centered in a string of length width. Padding is done using the specified fillchar

2016-10-07 17:43:06
str.translate()

str.translate(table) Return a copy of the string in which each character has been mapped through the given translation table

2016-10-07 17:43:21
bytearray.translate()

bytearray.translate(table[, delete]) Return a copy of the bytes or bytearray object where all bytes occurring in the optional

2016-10-07 17:27:53
bytearray.rpartition()

bytearray.rpartition(sep) Split the sequence at the last occurrence of sep, and return a 3-tuple containing the part

2016-10-07 17:27:49
bytes.capitalize()

bytes.capitalize() bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character

2016-10-07 17:27:55
bytes.decode()

bytes.decode(encoding="utf-8", errors="strict") bytearray.decode(encoding="utf-8", errors="strict") Return a string

2016-10-07 17:27:56
bytearray.lower()

bytearray.lower() Return a copy of the sequence with all the uppercase ASCII characters converted to their corresponding lowercase

2016-10-07 17:27:45
bytearray.capitalize()

bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character, and the first byte capitalized

2016-10-07 17:27:36
str.rindex()

str.rindex(sub[, start[, end]]) Like rfind() but raises

2016-10-07 17:43:17