Day 11 – Strings in Python
Welcome to Day 11 of 100 Days of Python! Almost every useful program works with text in some way. Names, messages, usernames, sentences, file contents, commands, and even data received from users are

Search for a command to run...

Series
A structured 100-day journey to learn Python from the fundamentals to advanced concepts through consistent practice and hands-on coding.
This series covers Python concepts step by step, including syntax, variables, data types, control flow, functions, data structures, object-oriented programming, exception handling, modules, file handling, libraries, and more.
Each day includes clear notes, practical examples, and coding exercises to make learning easier and provide a useful reference for revision.
The goal is to build a strong Python foundation that can be applied to automation, software development, data analysis, Artificial Intelligence (AI), Machine Learning (ML), and other areas of technology.
Follow along, practice consistently, and build your Python skills one day at a time.
Welcome to Day 11 of 100 Days of Python! Almost every useful program works with text in some way. Names, messages, usernames, sentences, file contents, commands, and even data received from users are

Day 10 – Taking User Input in Python Welcome to Day 10 of 100 Days of Python! Until now, most of our programs have worked with values that we directly wrote inside the code. But what if we want the us

What is Type Casting? Type casting, also called type conversion, is the process of converting a value from one data type to another. For example, a value stored as a string can be converted into an in

Welcome to Day 8 of 100 Days of Python! In Day 7, I was given my first Python exercise: Create a calculator capable of performing addition, subtraction, multiplication, and division on two numbers an

Welcome to Day 7 of 100 Days of Python! Today is our first exercise day. Instead of learning a completely new concept, we will apply what we have learned so far to understand Python operators and buil

Welcome to Day 6 of 100 Days of Python! Today, we are learning two of the most fundamental concepts in programming: Variables Data Types Whenever we write a Python program, we work with different
