Python: The Easiest Language

LearningTechie
2 min readJul 25, 2021

--

Hello Everyone! If you are a web developer, then might have skill on a programming language. I am also and I am a Python Developer. That’s why I want to share my python experience with you. I have done many projects on python.

Python is the most popular, and easiest programming language I have ever used. There are different ways to install python in the different operating systems. I think in Linux & macOS, python is installed in-built. In the windows operating system, we have to download the ‘.exe ’ file and run it.

After installing python, we need an IDE to code. I recommend you the Visual Studio Code. So, we know python is a high-level language. I experienced that in python, we have to code less and get more output. Let me compare the code of a simple program in C++ Vs Python.

C++ Code:

Python Code:

Python code to print a text

I think you can understand and compare the lines of code between the programming language. Which programming language, do you think most the easiest? Write it in the comment.

Therefore, Python is an advantageous, time-saving, and easy-memorizing language. That’s why I prefer Python to any other Language. Now, let me explain to you the process of execution of the python code as shown.

The code is ‘print(“Subscribe to LearningTechie”)’. When you install python, there are many files present in the python folder where your python is installed. When you write the code ‘print(your text)’, it calls a function from the main python file. In the ‘print()’ function, a code is written which shows you the output of the code you wrote. Then it is set that the print function takes a parameter and the parameter will be shown in the console. That’s why after calling the print() function, in the bracket you need to provide some string. It may be single-quoted, double-quoted, or triple quoted.

This is the funda on how python programs are executed.

I will come up with others concepts in the next article.

--

--