Welcome to the Concepts Codes Projects of Programming 🙂

Code X Studio

Latest Concepts

Female programmer working on cybersecurity projects at home, typing code on dual monitors.
concepts
adira.sidehustle@gmail.com

Taking Input from the User

Table of Contents Everything we’ve written so far has been one-directional. Python talks, you listen. It prints something, you read it. But real programs don’t work like that — they have a conversation. They ask, you answer, they respond. That’s what input is about. And in Python, getting input from the user is genuinely one of the simplest things you’ll do. One function. That’s it. input() Function Just like

Read More »
Experience the stunning spring bloom in a Paris park, featuring vibrant flowers and lush greenery.
concepts
adira.sidehustle@gmail.com

Operators

Table of Contents Variables store values. But what do you actually do with those values? You add them, compare them, combine them, check them. That’s where operators come in. An operator is a symbol that tells Python to perform a specific operation between values or variables. You’ve been using one already — the = sign when assigning variables. That’s an operator too. Let’s go through the main types. 1.

Read More »
Sunlit corridor of Paris' Palais Royal highlighting classic architecture.
concepts
adira.sidehustle@gmail.com

Python Syntax — Comments

Table of Contents Quick question — if your code runs perfectly without comments, why bother writing them? Here’s a scenario. You write 50 lines of Python today. Everything works, you’re happy. You come back to the same file three months later and stare at it thinking — what on earth was I doing here? That’s what comments are for. They’re notes you leave for yourself — and for anyone

Read More »
Stunning aerial view capturing the vibrant blue ocean waters of Central Kalimantan, Indonesia.
concepts
adira.sidehustle@gmail.com

Strings

Table of Contents We’ve already met strings briefly — they showed up when we printed ‘Hello, World!’ and when we stored names in variables. But strings are so commonly used in Python that they genuinely deserve their own post. Almost every real-world program works with text in some form — usernames, messages, file names, URLs. Understanding strings well early on will make everything else significantly easier. What is a

Read More »
A vibrant insect sits on lush green tea leaves in the heart of Yunnan, China.
concepts
adira.sidehustle@gmail.com

Variables & Data Types

Table of Contents   Alright, syntax rules are in place. Now let’s talk about something you’ll use in literally every single Python program you ever write — variables and data types. If programming is about giving instructions to a machine, then variables are how you give the machine something to remember. And data types tell Python what kind of thing it’s remembering. What is a Variable? A variable is

Read More »
A person reads 'Python for Unix and Linux System Administration' indoors.
concepts
adira.sidehustle@gmail.com

Python Syntax — Indentation, Whitespace, Case Sensitivity & Keywords

Table of Contents Every language has rules. English has grammar. Maths has order of operations. And Python has syntax. Syntax is simply the set of rules that define how you write code that Python can actually understand. Break the rules, and Python throws an error. Follow them, and everything runs smoothly.   The good news?  Python’s syntax is one of the cleanest and most readable among all programming languages. It

Read More »

Latest Codes

Latest Projects

Latest AI News