Some basic points about python.
Some basic points about Python.
Python:-
It is a programming language developed by Guido Van Rossum In February 1991.
Python is an easy and easy-to-learn yet powerful object-oriented programming language. It is a very high-level programming language, yet as powerful, as many other middle-level, not-so-high-level languages like C, C++, Java, etc.
It is case-sensitive.
Plus points of python:-
- Easy to use.
- Free and open source.
- Cross-platform language.
- Variety of usage applications.
- Interpreted language.
Minus points of python:-
- Not the fastest language.
- Les libraries are present in Java, C, and Pearl.
- Needs to be more easily convertible.
Python has two types of working windows. The first one is an interactive mode, and the second is a script mode. Both modes have their own rules.
Working in an interactive mode:-
It is very easy to work in the interactive mode because, in this mode, the code is executed line by line.
We must know some basic syntax and functions to work in interactive mode.
We need to know the minimum about the print input function and some other functions.
About print function.
The print function is used to print the output of the program.
Syntax of print:-
print(<string>or variable defined in program)
Printing hello world:-
It can be printed in two ways.
print("hello world")
or
x="hello world"
print(x)
