unicodedata.numeric()
  • References/Python/Python/Text Processing

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

2025-01-10 15:47:30
readline.get_completer_delims()
  • References/Python/Python/Text Processing

readline.get_completer_delims() Set or get the word delimiters for completion. These determine the start of the word to be considered

2025-01-10 15:47:30
readline.redisplay()
  • References/Python/Python/Text Processing

readline.redisplay() Change what’s displayed on the screen to reflect the current contents of the line buffer. This calls

2025-01-10 15:47:30
re.regex.findall()
  • References/Python/Python/Text Processing

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

2025-01-10 15:47:30
re.regex.subn()
  • References/Python/Python/Text Processing

regex.subn(repl, string, count=0) Identical to the subn() function, using the compiled pattern.

2025-01-10 15:47:30
difflib.SequenceMatcher.set_seq2()
  • References/Python/Python/Text Processing

set_seq2(b) Set the second sequence to be compared. The first sequence to be compared is not changed.

2025-01-10 15:47:30
textwrap.TextWrapper.wrap()
  • References/Python/Python/Text Processing

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

2025-01-10 15:47:30
re.regex.groupindex
  • References/Python/Python/Text Processing

regex.groupindex A dictionary mapping any symbolic group names defined by (?P<id>) to group numbers. The

2025-01-10 15:47:30
re.regex.finditer()
  • References/Python/Python/Text Processing

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

2025-01-10 15:47:30
readline.parse_and_bind()
  • References/Python/Python/Text Processing

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

2025-01-10 15:47:30