← All Posts

##python

Python Dictionaries - Day - 7
Python

Python Dictionaries - Day - 7

Dictionaries are one of Python's most powerful built-in data structures. Used in APIs, JSON data, config files, automation scripts, and databases - once you understand …

Gayatri · · 7 min read
Python Lists - Day - 6
Python

Python Lists - Day - 6

You have many names stored in one place. You can add a new contact, delete an old one, look someone up by their position - …

Gayatri · · 7 min read
Python Functions - Day - 5
Python

Python Functions - Day - 5

Function is a block of code you write once and can use again and again, wherever you need it. No copy-pasting. No repeating yourself. Just …

Gayatri · · 8 min read
Python Loops: for & while - Day - 4
Python

Python Loops: for & while - Day - 4

A loop tells Python: keep doing this thing, again and again, until I say stop. Without loops, repetitive tasks mean writing the same line over …

Gayatri · · 7 min read
Python Operators & Expressions - Day 2
Python

Python Operators & Expressions - Day 2

Mastering operators and expressions is like learning the grammar of Python; once you understand how these symbols interact, you can begin writing complex logic with …

Gayatri · · 32 min read