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...
Articles tagged with #python3
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
