Python

  • Python is an interpreted, high level programming language and a general purpose programming language.
  • It does not have complex structure for coding like we have in C, C++ and Java. It is very user- friendly and help us in application development leaving web development aside.
  • It also benefits us by making perfect readability of the code so that it can be understood easily by anyone who is working on that code.
  • It is also case sensitive and will not allow unnecessary spacing while we code and prompts indentation error.
  • So let’s discuss about the structure of the code.
print("Hello World")
The code given above is the basic code which we perform in any programming language.
Why are we not importing any main or not returning to any value??
From the above context it is clear that python is user friendly and will provide all the tools to the compiler to take care of the basic necessary steps.
We have also not used semicolon also at the end because python will take care and also not give any errors.
It also benefits us in the following ways:
  • Helpful for back-end development
  • Helps in development of data science.
  • Also helps in writing scripts among other things.

Scroll to top