This document provides an introduction to Python fundamentals, including:
- Python's character set includes letters, digits, symbols, and whitespace. Tokens are the basic elements identified by Python like keywords, identifiers, literals, operators, and punctuators.
- Keywords are reserved words in Python that cannot be used as identifiers. Identifiers are names given to objects in Python like variables and functions. Literals represent constant values like strings, numbers, Booleans, and collections.
- Strings can be single, multi-line, or use escape sequences. Numbers can be integers, floats, or complex. Boolean literals are True and False. Functions are self-contained blocks that perform tasks.
-