A collection of basic Python scripts and notebooks covering core programming concepts. This repository is part of my AI Engineer Roadmap, focusing on building a strong foundation in Python syntax and algorithmic thinking.
- Variables & Data Types: Understanding strings, integers, floats, and booleans.
- Control Flow:
if,elif,elsestatements.- Loops:
forloops (iterating over ranges/lists) andwhileloops.
- Functions:
- Definition and calling (
def). - Positional vs. Keyword arguments.
- Return statements and Scope.
- Definition and calling (
- Data Structures:
- Working with Lists, Tuples, and Sets.
- Efficient data lookup using Dictionaries.
- Recursion: Exploring Head vs. Tail recursion logic.
To run any of the scripts locally:
- Ensure you have Latest version of Python installed.
- Clone the repo:
git clone [https://github.com/YOUR_USERNAME/repo-name.git](https://github.com/YOUR_USERNAME/repo-name.git)