@@ -8,13 +8,13 @@ Comprehensive Python Cheatsheet
8
8
9
9
Contents
10
10
--------
11
- **   ;  ;  ; ** ** 1. Collections:** **   ; ** ** [ ` List ` ] ( #list ) ** __ ,__ ** [ ` Dict ` ] ( #dictionary ) ** __ ,__ ** [ ` Set ` ] ( #set ) ** __ ,__ ** [ ` Range ` ] ( #range ) ** __ ,__ ** [ ` Enumerate ` ] ( #enumerate ) ** __ ,__ ** [ ` Namedtuple ` ] ( #named-tuple ) ** __ ,__ ** [ ` Iterator ` ] ( #iterator ) ** __ ,__ ** [ ` Generator ` ] ( #generator ) ** __ .__
12
- **   ;  ;  ; ** ** 2. Types:** **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` Type ` ] ( #type ) ** __ ,__ ** [ ` String ` ] ( #string ) ** __ ,__ ** [ ` Regex ` ] ( #regex ) ** __ ,__ ** [ ` Format ` ] ( #format ) ** __ ,__ ** [ ` Numbers ` ] ( #numbers ) ** __ ,__ ** [ ` Combinatorics ` ] ( #combinatorics ) ** __ ,__ ** [ ` Datetime ` ] ( #datetime ) ** __ .__
13
- **   ;  ;  ; ** ** 3. Syntax:** **   ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` Arguments ` ] ( #arguments ) ** __ ,__ ** [ ` Splat ` ] ( #splat-operator ) ** __ ,__ ** [ ` Inline ` ] ( #inline ) ** __ ,__ ** [ ` Closure ` ] ( #closure ) ** __ ,__ ** [ ` Decorator ` ] ( #decorator ) ** __ ,__ ** [ ` Class ` ] ( #class ) ** __ ,__ ** [ ` Enum ` ] ( #enum ) ** __ ,__ ** [ ` Exceptions ` ] ( #exceptions ) ** __ .__
14
- **   ;  ;  ; ** ** 4. System:** **   ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` Print ` ] ( #print ) ** __ ,__ ** [ ` Input ` ] ( #input ) ** __ ,__ ** [ ` Command_Line_Arguments ` ] ( #command-line-arguments ) ** __ ,__ ** [ ` Open ` ] ( #open ) ** __ ,__ ** [ ` Path ` ] ( #path ) ** __ ,__ ** [ ` Command_Execution ` ] ( #command-execution ) ** __ .__
15
- **   ;  ;  ; ** ** 5. Data:** **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` CSV ` ] ( #csv ) ** __ ,__ ** [ ` JSON ` ] ( #json ) ** __ ,__ ** [ ` Pickle ` ] ( #pickle ) ** __ ,__ ** [ ` SQLite ` ] ( #sqlite ) ** __ ,__ ** [ ` Bytes ` ] ( #bytes ) ** __ ,__ ** [ ` Struct ` ] ( #struct ) ** __ ,__ ** [ ` Array ` ] ( #array ) ** __ ,__ ** [ ` MemoryView ` ] ( #memory-view ) ** __ ,__ ** [ ` Deque ` ] ( #deque ) ** __ .__
16
- **   ;  ;  ; ** ** 6. Advanced:** **   ;  ;  ; ** ** [ ` Threading ` ] ( #threading ) ** __ ,__ ** [ ` Introspection ` ] ( #introspection ) ** __ ,__ ** [ ` Metaprograming ` ] ( #metaprograming ) ** __ ,__ ** [ ` Operator ` ] ( #operator ) ** __ ,__ ** [ ` Eval ` ] ( #eval ) ** __ ,__ ** [ ` Coroutine ` ] ( #coroutine ) ** __ .__
17
- **   ;  ;  ; ** ** 7. Libraries:** **   ;  ;  ;  ;  ;  ; ** ** [ ` Progress_Bar ` ] ( #progress-bar ) ** __ ,__ ** [ ` Plot ` ] ( #plot ) ** __ ,__ ** [ ` Table ` ] ( #table ) ** __ ,__ ** [ ` Curses ` ] ( #curses ) ** __ ,__ ** [ ` Logging ` ] ( #logging ) ** __ ,__ ** [ ` Scraping ` ] ( #scraping ) ** __ ,__ ** [ ` Web ` ] ( #web ) ** __ ,__ ** [ ` Profile ` ] ( #profile ) ** __ ,__
11
+ **   ;  ;  ; ** ** 1. Collections:** **   ; ** ** [ ` List ` ] ( #list ) ** __ ,__ ** [ ` Dict ` ] ( #dictionary ) ** __ ,__ ** [ ` Set ` ] ( #set ) ** __ ,__ ** [ ` Range ` ] ( #range ) ** __ ,__ ** [ ` Enumerate ` ] ( #enumerate ) ** __ ,__ ** [ ` Namedtuple ` ] ( #named-tuple ) ** __ ,__ ** [ ` Iterator ` ] ( #iterator ) ** __ ,__ ** [ ` Generator ` ] ( #generator ) ** __ .__
12
+ **   ;  ;  ; ** ** 2. Types:** **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` Type ` ] ( #type ) ** __ ,__ ** [ ` String ` ] ( #string ) ** __ ,__ ** [ ` Regex ` ] ( #regex ) ** __ ,__ ** [ ` Format ` ] ( #format ) ** __ ,__ ** [ ` Numbers ` ] ( #numbers ) ** __ ,__ ** [ ` Combinatorics ` ] ( #combinatorics ) ** __ ,__ ** [ ` Datetime ` ] ( #datetime ) ** __ .__
13
+ **   ;  ;  ; ** ** 3. Syntax:** **   ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` Arguments ` ] ( #arguments ) ** __ ,__ ** [ ` Splat ` ] ( #splat-operator ) ** __ ,__ ** [ ` Inline ` ] ( #inline ) ** __ ,__ ** [ ` Closure ` ] ( #closure ) ** __ ,__ ** [ ` Decorator ` ] ( #decorator ) ** __ ,__ ** [ ` Class ` ] ( #class ) ** __ ,__ ** [ ` Enum ` ] ( #enum ) ** __ ,__ ** [ ` Exceptions ` ] ( #exceptions ) ** __ .__
14
+ **   ;  ;  ; ** ** 4. System:** **   ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` Print ` ] ( #print ) ** __ ,__ ** [ ` Input ` ] ( #input ) ** __ ,__ ** [ ` Command_Line_Arguments ` ] ( #command-line-arguments ) ** __ ,__ ** [ ` Open ` ] ( #open ) ** __ ,__ ** [ ` Path ` ] ( #path ) ** __ ,__ ** [ ` Command_Execution ` ] ( #command-execution ) ** __ .__
15
+ **   ;  ;  ; ** ** 5. Data:** **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` CSV ` ] ( #csv ) ** __ ,__ ** [ ` JSON ` ] ( #json ) ** __ ,__ ** [ ` Pickle ` ] ( #pickle ) ** __ ,__ ** [ ` SQLite ` ] ( #sqlite ) ** __ ,__ ** [ ` Bytes ` ] ( #bytes ) ** __ ,__ ** [ ` Struct ` ] ( #struct ) ** __ ,__ ** [ ` Array ` ] ( #array ) ** __ ,__ ** [ ` MemoryView ` ] ( #memory-view ) ** __ ,__ ** [ ` Deque ` ] ( #deque ) ** __ .__
16
+ **   ;  ;  ; ** ** 6. Advanced:** **   ;  ;  ; ** ** [ ` Threading ` ] ( #threading ) ** __ ,__ ** [ ` Introspection ` ] ( #introspection ) ** __ ,__ ** [ ` Metaprograming ` ] ( #metaprograming ) ** __ ,__ ** [ ` Operator ` ] ( #operator ) ** __ ,__ ** [ ` Eval ` ] ( #eval ) ** __ ,__ ** [ ` Coroutine ` ] ( #coroutine ) ** __ .__
17
+ **   ;  ;  ; ** ** 7. Libraries:** **   ;  ;  ;  ;  ;  ; ** ** [ ` Progress_Bar ` ] ( #progress-bar ) ** __ ,__ ** [ ` Plot ` ] ( #plot ) ** __ ,__ ** [ ` Table ` ] ( #table ) ** __ ,__ ** [ ` Curses ` ] ( #curses ) ** __ ,__ ** [ ` Logging ` ] ( #logging ) ** __ ,__ ** [ ` Scraping ` ] ( #scraping ) ** __ ,__ ** [ ` Web ` ] ( #web ) ** __ ,__ ** [ ` Profile ` ] ( #profile ) ** __ ,__
18
18
**   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` NumPy ` ] ( #numpy ) ** __ ,__ ** [ ` Image ` ] ( #image ) ** __ ,__ ** [ ` Audio ` ] ( #audio ) ** __ .__
19
19
20
20
0 commit comments