str.casefold()

str.casefold() Return a casefolded copy of the string. Casefolded strings may be used for caseless matching.

2016-10-07 17:43:06
bytearray.startswith()

bytearray.startswith(prefix[, start[, end]]) Return True if the binary data starts with the specified prefix

2016-10-07 17:27:51
bytearray.istitle()

bytearray.istitle() Return true if the sequence is ASCII titlecase and the sequence is not empty, false otherwise. See bytes

2016-10-07 17:27:43
bytearray.replace()

bytearray.replace(old, new[, count]) Return a copy of the sequence with all occurrences of subsequence old replaced

2016-10-07 17:27:47
str.rjust()

str.rjust(width[, fillchar]) Return the string right justified in a string of length width. Padding is done using the

2016-10-07 17:43:17
bytearray.isdigit()

bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence is not empty, false otherwise

2016-10-07 17:27:42
memoryview.shape

shape A tuple of integers the length of ndim giving the shape of the memory as an N-dimensional array.

2016-10-07 17:37:12
str.zfill()

str.zfill(width) Return a copy of the string left filled with ASCII '0' digits to make a string of length width

2016-10-07 17:43:22
str.endswith()

str.endswith(suffix[, start[, end]]) Return True if the string ends with the specified suffix, otherwise

2016-10-07 17:43:07
str.isnumeric()

str.isnumeric() Return true if all characters in the string are numeric characters, and there is at least one character, false

2016-10-07 17:43:12