Articles in this series
Python is an interpreted, high-level, powerful general-purpose programming language. You may ask, Python’s a snake right? and Why is this programming...
Programming is fun!Isn’t it?Anyone interested in logic with some creativity will fall in love with coding. Alright then, if you are interested to...
Variables in programming are something like containers storing some specific things. Variables are a way we store data on the computer.This is how we...
Data types are one of the building blocks of python.And You can do a lot of things with data types! Fact: In python, all data types are implemented as...
Getting input from the user is what makes a program more interactive with the user. Hence, in Python, we have an input function: input(), to receive...
print() function and input() function makes the program more interactive with the user. Although, there are some extra things we can do with print(),...