str.lstrip()

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

2016-10-07 17:43:15
str.encode()

str.encode(encoding="utf-8", errors="strict") Return an encoded version of the string as a bytes object. Default encoding is

2016-10-07 17:43:07
bytes.expandtabs()

bytes.expandtabs(tabsize=8) bytearray.expandtabs(tabsize=8) Return a copy of the sequence where all ASCII tab characters

2016-10-07 17:27:57
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.isupper()

bytearray.isupper() Return true if there is at least one uppercase alphabetic ASCII character in the sequence and no lowercase

2016-10-07 17:27:44
str.isspace()

str.isspace() Return true if there are only whitespace characters in the string and there is at least one character, false otherwise

2016-10-07 17:43:12
class.mro()

class.mro() This method can be overridden by a metaclass to customize the method resolution order for its instances. It is called

2016-10-07 17:28:26
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
memoryview.hex()

hex() Return a string object containing two hexadecimal digits for each byte in the buffer.

2016-10-07 17:37:09
str.ljust()

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

2016-10-07 17:43:14