string.ascii_letters

string.ascii_letters The concatenation of the ascii_lowercase and ascii_uppercase constants described

2016-10-07 17:43:22
re.regex.findall()

regex.findall(string[, pos[, endpos]]) Similar to the findall() function, using the compiled pattern, but also

2016-10-07 17:41:17
readline.set_completer_delims()

readline.set_completer_delims(string) readline.get_completer_delims() Set or get the word delimiters for completion

2016-10-07 17:41:23
textwrap.dedent()

textwrap.dedent(text) Remove any common leading whitespace from every line in text. This

2016-10-07 17:44:27
re.match.end()

match.end([group]) Return the indices of the start and end of the substring matched by group; group defaults

2016-10-07 17:41:15
re.regex.match()

regex.match(string[, pos[, endpos]]) If zero or more characters at the beginning of string match this regular

2016-10-07 17:41:18
readline.parse_and_bind()

readline.parse_and_bind(string) Execute the init line provided in the string argument. This calls rl_parse_and_bind()

2016-10-07 17:41:22
unicodedata.numeric()

unicodedata.numeric(chr[, default]) Returns the numeric value assigned to the character chr as float. If no such value

2016-10-07 17:46:02
textwrap.TextWrapper.wrap()

wrap(text) Wraps the single paragraph in text (a string) so every line is at most width characters long

2016-10-07 17:44:30
re.search()

re.search(pattern, string, flags=0) Scan through string looking for the first location where the regular expression

2016-10-07 17:41:20