Daily Python

Mahesh Varma
2 min readFeb 23, 2021

The aim of this blog is just to introduce you to programming the rest hard work you have to do it on your own.

Photo by Start Digital on Unsplash

To start with open your chrome browser or any other browser and type repl.it (or you can click on this). This will take you to repl.it website which provides free online IDE for writing your python code and test it and also save it so that we don’t loose our progress. Create an account in it and start coding in it. For your understanding i have put a Youtube video link for the same.

Video Explaining how to use repl.it

Let’s start with python…

To learn a programming language is very simple but to master it is a very tough job but not impossible. To all the beginners is it easy to start yes it is.

In this blog we will write a simple hello world program. Few things to remember as we go forward python files are stored with extension .py same as the way text files are stored with the extension .txt

In python there is a function called print(). Whoa!! , wait what is a function, think of it as a black box which takes some input and gives some output we don’t know what is happening inside but we get the output same as our bike engine which takes petrol as input and runs our bike.

Python code

Print() function is a very useful function in python. It is used for debugging, displaying messages for users and so many things can be done with just this function alone. Please think of using this function in different ways and that’s it for this blog. See you soon on another blog of the series Daily Python.

Useful Links:

For History of Python please visit the below link

Daily python-1 (Continuation of this blog…)

--

--