Python Libraries, tools and Links | Official Python Docs | Intro to Pygame | spaCy

Python Language Notes

  1. Lexical Analysis
  2. Keywords
     name      ::=  lc_letter (lc_letter | "_")*
     lc_letter ::=  "a"..."z"
      
  3. Operators and Builtin Functions
    1. All Types
    2. type(obj) --> type object
      
      isinstance(obj, typ) --> bool
      
      repr(obj) #evaluatable representation
      
      str(obj)  #printable representation
      
      is, is not # are two objects the same
  4. Objects
  5. int, float, bool, dict, set, tuple, str, bytes
     None
    functions without return, return None
  6. Classification
  7. Primative Types

http:///wiki/?python

06dec23   admin