online python training

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?


History Of Python:


Benefits of Python:-


SCOPE OF JAVA:


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

  1. Facebook.
  2. Instagram.
  3. Quora.
  4. 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))