Introduction - Python Language
1001
Arnab De
04/09/2020
What is Python?
Python is a high-level computer language. It is a general-purpose language that means we can use this to develop any kind of application. Python is a very easy language to learn due to its huge function library and also it is open-source.
This language was developed by Guido Van Rossum in 1989.
The following leading companies are use python for their own product
- Google
- Dropbox
- Netflix
- National Security Agency
- BitTorrent
- NASA
- Youtube
- And so on….
To translate a python program we use a python interpreter.
Pathway to learn Python
- Python use indentation to create a block instate of curly braces like other famous High level languages (C, C++, Java, etc.). As a block defines by curly braces in other languages, indentation is not important but in python, indentation is very important. If we not use indentation properly then it throws an error. To avoid this problem, our suggestion to the entire python learner, please give extra concentration on indentation and always write your code directly in python IDE.
- Please give attention when you use the codes which creates a block like, if, for, while. These lines should end with a colon(:) and the next line should write after an indentation.