re.regex.split()

regex.split(string, maxsplit=0) Identical to the split() function, using the compiled pattern.

2016-10-07 17:41:19
textwrap.fill()

textwrap.fill(text, width=70, **kwargs) Wraps the single paragraph in text, and returns a single string containing

2016-10-07 17:44:27
unicodedata.digit()

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

2016-10-07 17:46:01
difflib.ndiff()

difflib.ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK) Compare a and b (lists of strings); return

2016-10-07 17:31:54
difflib.get_close_matches()

difflib.get_close_matches(word, possibilities, n=3, cutoff=0.6) Return a list of the best “good enough” matches. word

2016-10-07 17:31:53
unicodedata.ucd_3_2_0

unicodedata.ucd_3_2_0 This is an object that has the same methods as the entire module, but uses the Unicode database version

2016-10-07 17:46:02
unicodedata.east_asian_width()

unicodedata.east_asian_width(chr) Returns the east asian width assigned to the character chr as string.

2016-10-07 17:46:01
re.match()

re.match(pattern, string, flags=0) If zero or more characters at the beginning of string match the regular expression

2016-10-07 17:41:15
difflib.SequenceMatcher.get_grouped_opcodes()

get_grouped_opcodes(n=3) Return a generator of groups with up to n lines of

2016-10-07 17:31:55
re.fullmatch()

re.fullmatch(pattern, string, flags=0) If the whole string matches the regular expression pattern, return

2016-10-07 17:41:14