str.title() Return a titlecased version of the string where words start with an uppercase character and the remaining characters
static str.maketrans(x[, y[, z]]) This static method returns a translation table usable for str.translate().
strides A tuple of integers the length of ndim giving the size in bytes to access each element for each dimension
symmetric_difference(other) set ^ other Return a new set with elements in either the set or other but not
bytearray.islower() Return true if there is at least one lowercase ASCII character in the sequence and no uppercase ASCII characters
str.splitlines([keepends]) Return a list of the lines in the string, breaking at line boundaries. Line breaks are not included
str.rfind(sub[, start[, end]]) Return the highest index in the string where substring sub is found, such that sub
bytearray.rjust(width[, fillbyte]) Return a copy of the object right justified in a sequence of length width. Padding
bytes.endswith(suffix[, start[, end]]) bytearray.endswith(suffix[, start[, end]]) Return True if the
bytes.isdigit() bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence
Page 9 of 20