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

unicodedata.category(chr) Returns the general category assigned to the character chr as string.

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

string.capwords(s, sep=None) Split the argument into words using

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

unicodedata.lookup(name) Look up character by name. If a character with the given name is found, return the corresponding character

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

unicodedata.decomposition(chr) Returns the character decomposition mapping assigned to the character chr as string

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

readline.get_begidx() readline.get_endidx() Get the beginning or ending index of the completion scope. These indexes

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

stringprep.in_table_b1(code) Determine whether code is in tableB.1 (Commonly mapped to nothing).

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

substitute(mapping, **kwds) Performs the template substitution, returning a new string. mapping is any dictionary-like

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

match.groups(default=None) Return a tuple containing all the subgroups of the match, from 1 up to however many groups are in

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

readline.append_history_file(nelements[, filename]) Append the last nelements items of history to a file. The default

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

safe_substitute(mapping, **kwds) Like substitute(), except that if placeholders are missing from mapping

2025-01-10 15:47:30