Power Point Presentation On Topic: Python: Submitted By: Himani Kathal
Power Point Presentation On Topic: Python: Submitted By: Himani Kathal
on
Topic: Python
Submitted by :
Himani Kathal
What is Python ?
• Python is a simple, general purpose, high level, and
object-oriented programming language.
• Python supports Object Oriented programming
approach to develop applications.
• Python is simple and easy to learn and provides
lots of high-level data structures.
• Python is easy to learn yet powerful and versatile
scripting language, which makes it attractive for
Application Development.
Difference between program and
scripting language
Program Scripting
A program is executed A script is interpreted.
(i.e., the source is first A “script” is code written
compiled and the result of in a scripting language. A
that compilation is scripting language is
expected). nothing but a type of
A “program” in general is programming language in
a sequence of instructions which we can write code
written so that a computer to control another
can perform certain task. software application.
History
Invented in the Netherlands, early 90s by Guido van
Rossum.
Python was considered in the late 1980s and its
implementation was started in December 1989.
Guido van Rossum is fan of ‘Monty Python's Flying
Circus’, this is a famous TV show in Netherlands.
Named after Monty Python.
Open sourced from the beginning.
Scope of Python
Science
- Bioinformatics
System Administration
- Unix
-Web Logic
- Web sphere
Web Application Development
-CGI
-Jython - Servlets
What can I do with Python?
System programming
Graphical User Interface Programming
Internet Scripting
Component Integration
Database programming
Gaming, Images, XML, Robot and more
Why do people use python?
The following primary factors cited by
Python users seem to be these:
Python is object-oriented
Structure supports such concepts as polymorphism,
operation overloading, and multiple inheritance.
It’s free(open source)
Downloading and installing Python is free and easy
Source code is easily accessible.
It’s powerful
- Dynamic typing
- Built-in types and tools
- Library utilities
- Automatic memory management
It’s portable
-Python runs virtually every major platform used
today
-AS long as you have a compatible Python interpreter
installed. Python programs will run in exactly the
same manner, irrespective of program.
Python Code Execution
Python’s traditional runtime execution model:
source code you type is translated to byte
code, which is then run by the Python Virtual
Machine. Your code is automatically complied,
but then it is interpreted.
Source code extension is .py.
Byte code extension is .pyc(compiled python
code).
Simple python program:
code :
<<<print("Hello, World!")
output :
Hello, World!
Who uses python today
Python is being applied in real revenue-generating
products by real companies.
Google makes extensive use of Python in it web
search system and employs Python’s creator.
Intel, Cisco, Hewlett-Packard, Seagate, Qualcomm
and IBM use Python for hardware testing.
The YouTube video sharing service is largely written
in Python.
Thank you…