Posts

Showing posts from September, 2025

Salvaged Tables

Image
I messed up my previous posting ( here ) which was supposed to be a Table full of relevant Tables. So we try again here. TABLE OF CONTENTS 1.  Python ESCAPE codes     ( Google ) ( G4G- how2 print ) ( GitHub/ANSI ) 2. SYMB[O]L Unicode table     Symbl Table of Sections: 0: Basic Multilingual Plane 1: Supplementary Multilingual Plane 2: Supplementary Ideographic Plane 3: Tertiary Ideographic Plane 4-13: Not Used 14: Supplementary Special-purpose Plane 15: Supplementary Private Use Area Plane – A 16: Supplementary Private Use Area Plane – B 3. GitHub Colorist COLOR codes 4. Python Morsels 5. Python Built-in Functions() 6. Python Built-in Object Types (1) Sample Table of Escape Sequences ( here ): Escape Sequence Meaning Notes \ <newline> Backslash and newline ignored (1) \\ Backslash ( \ ) \' Single quote ( ' ) \" Double quote ( " ) \a ASCII Bell (BEL) \b ASCII Backspace (BS) \f ASCII Formfeed (FF) \n ASCII Linefeed (LF) \r ASCII Carriage Return (CR) \t ...