Python
Modern Python programming: clean syntax, powerful data structures, and a rich standard library.
Lists and Dictionaries
Feb 02, 2025Lists and dictionaries are Python's workhorses. Lists store ordered sequences; dictionaries map keys to values. Both are mutable and extremely versatile.
Python Functions
Jan 26, 2025Functions are defined with the def keyword. Python supports default arguments, keyword arguments, and arbitrary argument lists, making functions highly flexible.
Control Flow in Python
Jan 19, 2025Control flow statements (if/elif/else, for, and while) let your program make decisions and repeat actions. Python's syntax keeps them concise.
Python Variables and Data Types
Jan 12, 2025Python is dynamically but strongly typed. Variables are names that reference objects; the type is a property of the object, not the variable.
Introduction to Python
Jan 05, 2025Python is a clear, readable programming language that emphasises simplicity. It is used for web development, data science, automation, and much more.