0% found this document useful (0 votes)
19 views6 pages

Introduction To Python

Python is a high-level programming language created by Guido Van Rossum in 1989 and released to the public in 1991. It supports multiple programming paradigms, is easy to learn, and is widely used in various applications, including web development, data analysis, and machine learning. Python has extensive libraries and is known for its simplicity, portability, and dynamic typing, although it is less commonly used for mobile applications.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views6 pages

Introduction To Python

Python is a high-level programming language created by Guido Van Rossum in 1989 and released to the public in 1991. It supports multiple programming paradigms, is easy to learn, and is widely used in various applications, including web development, data analysis, and machine learning. Python has extensive libraries and is known for its simplicity, portability, and dynamic typing, although it is less commonly used for mobile applications.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Language Fundamentals

Introduction
 Python is a general purpose 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
for Python is : Feb 20th 1991.

Eg1: To print

Helloworld: Java:

1) public class HelloWorld


2) {
3) p s v main(String[]
args){
4)
5) SOP("Hello world");
6) }
7) }

C:

1) #include<stdio.h>
2) void main()
3) {
4) print("Hello world");
5) }

Python:

print("Hello World")
Eg2: To print the sum of 2

numbers Java:

1) public class Add


2) {
3) public static void main(String[] args)
4) {
5) int a,b;
6) a =10;
7) b=20;
8) System.out.println("The Sum:"+(a+b));
9) }
10) }

C:

1) #include <stdio.h>
2)
3) void main()
4) {
5) int a,b;
6) a =10;
7) b=20;
8) printf("The Sum:%d",(a+b));
9) }

Python:

1) a=10
2) b=20
3) print("The Sum:",(a+b))

The name Python was selected from the TV


Show "The Complete
Monty
Python's
Circus", which was broadcasted in BBC from 1969 to 1974.

Guido developed Python language by taking almost all programming features


from different languages

1. Functional Programming Features from C


2. Object Oriented Programming Features from C++
3. Scripting Language Features from Perl and Shell Script
4. Modular Programming Features from Modula-3

Most of syntax in Python Derived from C and ABC

languages. Where we can use Python:

We can use everywhere. The most common important application areas are

1. For developing Desktop Applications


2. For developing web Applications
3. For developing database Applications
4. For Network Programming
5. For developing games
6. For Data Analysis Applications
7. For Machine Learning
8. For developing Artificial Intelligence Applications
9. For IOT
...

Note:

Internally Google and Youtube use Python coding


NASA and Nework Stock Exchange Applications developed by Python.
Top Software companies like Google, Microsoft, IBM, Yahoo using Python.

Features of Python:
1. Simple and easy to learn:

Python is a simple programming language. When we read Python program,we can feel
like reading english statements.
The syntaxes are very simple and only 30+ kerywords are available.
When compared with other languages, we can write programs with very less number of
lines. Hence more readability and simplicity.
We can reduce development and cost of the project.

2. Freeware and Open Source:

We can use Python software without any licence and it is freeware.

Its source code is open,so that we can we can customize based on our

requirement. Eg: Jython is customized version of Python to work with Java

Applications.
3. High Level Programming language:

Python is high level programming language and hence it is programmer friendly


language. Being a programmer we are not required to concentrate low level activities like
memory management and security etc..

4. Platform Independent:

Once we write a Python program,it can run on any platform without rewriting once again.
Internally PVM is responsible to convert into machine understandable form.

5. Portability:

Python programs are portable. ie we can migrate from one platform to another platform
very easily. Python programs will provide same results on any paltform.

6. Dynamically Typed:

In Python we are not required to declare type for variables. Whenever we are
assigning the value, based on value, type will be allocated automatically.Hence Python
is considered as dynamically typed language.

But Java, C etc are Statically Typed Languages b'z we have to provide type at the
beginning only.

This dynamic typing nature will provide more flexibility to the programmer.

7. Both Procedure Oriented and Object Oriented:

Python language supports both Procedure oriented (like C, pascal etc) and object
oriented (like C++,Java) features. Hence we can get benefits of both like security and
reusability etc

8. Interpreted:

We are not required to compile Python programs explcitly. Internally Python interpreter
will take care that compilation.

If compilation fails interpreter raised syntax errors. Once compilation success then PVM
(Python Virtual Machine) is responsible to execute.

9. Extensible:

We can use other language programs in


Python. The main advantages of this
approach are:
1. We can use already existing legacy non-Python code
2. We can improve performance of the application

10. Embedded:

We can use Python programs in any other language programs.


i.e we can embedd Python programs anywhere.

11. Extensive Library:

Python has a rich inbuilt library.


Being a programmer we can use this library directly and we are not responsible to
implement the functionality.

etc...

Limitations of Python:
1. Not using much for mobile Applications

Python 1.0V introduced in Jan 1994


Python 2.0V introduced in October
2000 Python 3.0V introduced in
December 2008

Note: Python 3 won't provide backward compatibility to Python2


i.e there is no guarantee that Python2 programs will run in Python3.

Current versions

Python 3.10.5 Python 2.7.18

You might also like