Sunday, September 29, 2019

Core and Advance Python

                      Language Fundamentals

Introduction

  • Python is general purposes high level programming language.
  •  python was developed by Guido Van Rossam in 1989 while working at national research institute at Netherlands.
  •  but officially Python was made available to  public in 1991. The official date of birth if python is :Feb 20th 1991.
  • python is recommended as first programming  language for beginners.

Ex1. To print hello word:

Java:

public class hello world
{
 p s v main(Stringa[]rgs)
 {
  SOP("hello word");
 }
}

C:

#include <stdio.h>
void main()
{
  print("hello world")
}
But in Python we have to write this code in only one line

print("hello world')

Ex2. To print the sum of 2 numbers





The name python was selected from  TV Show
"The Complete Monty Python's Circus",which was broadcast ed in BBC from !969 to 1974.

Guido developed Python language by taking almost   all programming feature from differentiate
languages.


  • Fundamental programming Feature from C
  • Object oriented programming feature from C++
  • Scripting language Feature  from perl and Shell Script
  • Modular programming Feature from Modula-3
    most of syntax in Python Derived from C and ABC languages.


   Where can we use  python:

We can use every where. The most important areas are

  1. For developing Desktop Application
  2. For developing Web Applications
  3. For developing Database Applications
  4. For Network Programming
  5. For developing games]
  6. For Machine learning
  7. For developing Artificial Intelligence Application
  8. For IOT
       ..........
  Note:

Internally Google and Youtube use python coading
NASA and Network Stock Exchange Application developed by Python.
Top software companies like Google,Microsoft,,IBM,Yahoo using Python

No comments:

Post a Comment

Featured Post

Core and Advance Python

                      Language Fundamentals