bytes.rsplit()

bytes.rsplit(sep=None, maxsplit=-1) bytearray.rsplit(sep=None, maxsplit=-1) Split the binary sequence into subsequences

2016-10-07 17:28:07
str.rsplit()

str.rsplit(sep=None, maxsplit=-1) Return a list of the words in the string, using sep as the delimiter string. If maxsplit

2016-10-07 17:43:18
str.istitle()

str.istitle() Return true if the string is a titlecased string and there is at least one character, for example uppercase characters

2016-10-07 17:43:13
bytes.splitlines()

bytes.splitlines(keepends=False) bytearray.splitlines(keepends=False) Return a list of the lines in the binary sequence

2016-10-07 17:28:09
str.isidentifier()

str.isidentifier() Return true if the string is a valid identifier according to the language definition, section Identifiers

2016-10-07 17:43:11
float.fromhex()

classmethod float.fromhex(s) Class method to return the float represented by a hexadecimal string s. The string s

2016-10-07 17:33:14
set.issubset()

issubset(other) set <= other Test whether every element in the set is in other.

2016-10-07 17:41:46
str.format()

str.format(*args, **kwargs) Perform a string formatting operation. The string on which this method is called can contain literal

2016-10-07 17:43:08
str.replace()

str.replace(old, new[, count]) Return a copy of the string with all occurrences of substring old replaced by new

2016-10-07 17:43:16
set

class set([iterable]) class frozenset([iterable]) Return a new set or frozenset object whose elements are taken

2016-10-07 17:41:42