string.hexdigits
  • References/Python/Python/Text Processing

string.hexdigits The string '0123456789abcdefABCDEF'.

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

vformat(format_string, args, kwargs) This function does the actual work of formatting. It is exposed as a separate function

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

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

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

readline.set_completion_display_matches_hook([function]) Set or remove the completion display function. If function

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

quick_ratio() Return an upper bound on ratio() relatively quickly.

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

readline.set_completer([function]) Set or remove the completer function. If function is specified, it will be used

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

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

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

re.compile(pattern, flags=0) Compile a regular expression pattern into a regular expression object, which can be used for matching

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

match.group([group1, ...]) Returns one or more subgroups of the match. If there is a single argument, the result is a single

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

string.ascii_uppercase The uppercase letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'. This value is not locale-dependent and

2025-01-10 15:47:30