This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
python3_ref [2018/08/07 10:38] jguerin |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Python Language Reference ====== | ||
- | |||
- | ===== Input/ | ||
- | * [[python3_basic_io|Basic IO]] operations | ||
- | * [[python3_faster_io|Faster IO]] for competitive programming | ||
- | |||
- | ===== Data Structures ===== | ||
- | |||
- | ==== Sequential Structures ==== | ||
- | * [[python3_lists|Lists]] | ||
- | * [[python3_strings|Strings]] | ||
- | * [[python3_tuples|Tuples]] | ||
- | * [[python3_stacks|Stacks]] | ||
- | * [[python3_queues|Queues]] | ||
- | * [[python3_priority_queues|Priority Queues]] | ||
- | |||
- | === Sequential Structures: Operators and Functionality === | ||
- | * [[python3_slicing | Indexing and Slicing]] | ||
- | * [[python3_unpacking | Unpacking]] | ||
- | |||
- | |||
- | ==== Non-Sequential Structures ==== | ||
- | * [[python3_dictionaries|Dictionaries]] | ||
- | * [[python3_sets|Sets]] | ||
- | |||
- | ===== Mathematical Types and Operations ===== | ||
- | ==== Numeric Types ==== | ||
- | * [[python3_decimal|Decimal]] | ||
- | * [[python3_fractions|Fractions]] | ||