This document provides an introduction to Python basics including:
- Python is simple to use, powerful due to extensive libraries, free and open source, and portable across operating systems.
- Python supports literal constants like strings ("Hello") and numbers (2.5), as well as variables to store values. Variables must start with a letter or underscore and can include letters, numbers and underscores.
- Python uses hash marks (#) for comments and whitespace is ignored. Multiple statements can be written on one line separated by semicolons.