0.5.dev0+git.20260720.c8f33de - July 20, 2026 16:01 UTC
🐍 Data Analysis Using Python#
Section 7 of the Data Analytics hub — 33 of 33 lessons.
Doing the whole workflow in Python: NumPy, pandas, and plotting for real analytical tasks.
↑ Back to the Data Analytics hub
🐍 Python Fundamentals#
From first program and Jupyter to variables, types, functions, and clean code.
🔀 Control Flow#
Booleans, branching, and iteration with while, for, and range.
📚 Strings & Data Structures#
Strings, lists, tuples, comprehensions, dictionaries, and sets in practice.
016 · Strings in Python — working with text — the string type, its operations, and its immutability
020 · Modifying Lists in Python — changing lists in place — adding, removing, and updating elements
021 · Tuples in Python — ordered, immutable collections — like lists that cannot change
023 · Dictionaries in Python — key-value collections — looking values up by a meaningful key
025 · Sets in Python — unordered collections of unique values — membership and set operations
🐼 NumPy & pandas#
Vectorized arrays and DataFrames: masking, groupby, and combining data.