readline.add_history()
  • References/Python/Python/Text Processing

readline.add_history(line) Append line to the history buffer, as if it was the last line typed. This calls add_history()

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

stringprep.in_table_c12(code) Determine whether code is in tableC.1.2 (Non-ASCII space characters).

2025-01-10 15:47:30
rlcompleter.Completer.complete()
  • References/Python/Python/Text Processing

Completer.complete(text, state) Return the stateth completion for text. If

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

unicodedata.name(chr[, default]) Returns the name assigned to the character chr as a string. If no name is defined

2025-01-10 15:47:30
string.Formatter.format()
  • References/Python/Python/Text Processing

format(format_string, *args, **kwargs) The primary API method. It takes a format string and an arbitrary set of positional and

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

re.escape(string) Escape all the characters in pattern except ASCII letters, numbers and '_'. This is useful if

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

subsequent_indent (default: '') String that will be prepended to all lines of wrapped output except the first.

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

stringprep.in_table_c3(code) Determine whether code is in tableC.3 (Private use).

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

difflib.IS_CHARACTER_JUNK(ch) Return true for ignorable characters. The character ch is ignorable if ch is

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

class difflib.SequenceMatcher This is a flexible class for comparing pairs of sequences of any type, so long as the sequence

2025-01-10 15:47:30