This is a quick Python cheat sheet with Examples. It contain two parts: * Python basics * This is just a basic overview * Advanced topics * many more features and concepts in Python Python basics cheat sheet Python data types data example explanation Integer 7 whole numbers Float 4.2 floating-point numbers String "Hello" sequence of characters Boolean True; False booleans List [ 1, 2, 3 ] ordered collection of items Tuple ( 1, 2, 3 ) immutable c