In our MySkill Academy we conduct online python training. In this module we cover from basic to advanced level upto Django web development . 100% live sessions with instant doubt clearing , provide subject materials, simultaneous theory and practical sessions, online test and certification by IIT-Bombay Spoken Tutorial with placement support in relevant sector.
WHAT IS Python?
- Python is a high level programming language, class-based, object-oriented and secure-programming language.
- Interpreted
- General Purpose.
History Of Python:
- Python was created by GUIDO VAN ROSSUM in 1990.
- At that time there was a comedy show that is MONTY PYTHON CIRCUS.He liked monty python circus. So the name was changed as PYTHON by GUIDO VAN ROSSUM.
- They released python in 1991 and still now it is oopen source.
- Python 2.0 was released on oct 16,2000.it contains many major new features.
- Python 3.0 wasreleased on dec 3,2008.
Benefits of Python:-
- System utilities (command prompt).
- Graphical user interface(tkniter,gtk,windows).
- Internet scripting.
- Database programming.
- Artificial intelligence.
- Embedded scripting
SCOPE OF JAVA:
- There are job opportunities available in industries: U can become
- Web developer.
- Data analyst.
- Python developer.
- Software developer.
- Data scientist.
- Research analyst.
- AI engineer.
FEATURES OF PYTHON:
1.OBJECT ORIENTED PROGRAMMING:
Object oriented programming is a programming paradigm.the main aim of the oop is connect data with their function.
Oops
o Polymorphism.
o Inheritance.
o Encapsulation.
o Abstraction.
o Class and
o Object.
2.INTERPRED:
It translates the source code into machine code and checks the code line by line in program.
3.OPEN SOURCE:
It means we don’t need to pay any amount to use the software and write code in that.
4.EXTENSIBLE:
It means we can write some codes using c /c++ and execute the code in c/c++.
5.EXPRESSIVE:
It means that it is easy to write codes and written codes are in understandable form.
6.CROSS PLAT-FORM:
It means we write codes in one os(windows) and run code in another os like linux.
7.INTERGRATED:
It means various parts or aspects are linked or coordinate.
8.LARGE STANDARD LIBRARY:
Library means is a collection of pre-compiled routine that a program can use.
WHERE PYTHON IS USED?
We already know that python is most used language now a days. Let’s see some real life examples. The top aplications are using python as primary programming
- Facebook.
- Instagram.
- Quora.
- Spotify.
Simple program:
To print hello world
Print(‘hello world’);
To add two values:
a=input(“enter first number;”);
b=input(“enter second number;”);
sum=float(a) + float(b)
print(‘the sum of {0} and {1} is {2}’.format (a,b,sum))