set

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

2016-10-07 17:41:42
str.rstrip()

str.rstrip([chars]) Return a copy of the string with trailing characters removed. The chars argument is a string specifying

2016-10-07 17:43:18
bytearray.count()

bytearray.count(sub[, start[, end]]) Return the number of non-overlapping occurrences of subsequence sub in the range

2016-10-07 17:27:37
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
bytes.zfill()

bytes.zfill(width) bytearray.zfill(width) Return a copy of the sequence left filled with ASCII b'0'

2016-10-07 17:28:12
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
bytes.rfind()

bytes.rfind(sub[, start[, end]]) bytearray.rfind(sub[, start[, end]]) Return the highest index in the sequence where

2016-10-07 17:28:05
bytes.maketrans()

static bytes.maketrans(from, to) static bytearray.maketrans(from, to) This static method returns a translation table

2016-10-07 17:28:04
bytes.center()

bytes.center(width[, fillbyte]) bytearray.center(width[, fillbyte]) Return a copy of the object centered in a sequence

2016-10-07 17:27:55
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