0% found this document useful (0 votes)
2 views13 pages

Programming with Python

The document provides an introduction to Python, a powerful and portable programming language developed by Guido Van Rossum in 1991. It highlights Python's features such as simplicity, expressiveness, and extensive libraries, as well as its uses in various fields like web development and scientific computing. Additionally, it discusses limitations of Python, including high memory consumption and execution speed, and explains different modes of operation, specifically interactive and script modes.

Uploaded by

vedanttawde2007
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
2 views13 pages

Programming with Python

The document provides an introduction to Python, a powerful and portable programming language developed by Guido Van Rossum in 1991. It highlights Python's features such as simplicity, expressiveness, and extensive libraries, as well as its uses in various fields like web development and scientific computing. Additionally, it discusses limitations of Python, including high memory consumption and execution speed, and explains different modes of operation, specifically interactive and script modes.

Uploaded by

vedanttawde2007
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 13

Programming with

python
GRADE 11
INDRAJA ALAND
INTRODUCTION
Program:
A set of instructions to be executed by a
computer.
Programming Language:
Language that is used to write the set of
instructions to the computer.
Introduction to Python:
It is portable and powerful programming
language.
It has well-designed syntax.
Named after British comedy show Monty
Python’s Flying Circus at NRI for Maths and
CS inNetherlands.
Introduction to Python:
Itis a general purpose and high-level
language.
Developed by: Guido Van Rossum in 1991.
Derived from many other languages like
ABC, Modula-3 & Unix shell.
Works with all OS.
Features of Python:
Simple & Easy to learn and code.
Expressive- Easy syntax
Free and Open Source- No cost
High- level language- Results in better results.
Portable- Platform independent.
Object oriented- Decomposition.
Features of Python:
Extensible- Code can be written in other
language too.
Embeddable- Adding functions from library
Interpreted- PVM is used.
Extensive Library- Large collection of
functions.
Uses of Python:
Web & Internet Development
Scientific and Numeric Computing
Desktop GUIs
Software Development
Business Application
Limitations of Python:
Code execution that is carried out line and
line.
Python’s memory consumption is high.
Connectivity is not efficient as JDBC &
ODBC.
Different Modes:
Interactive Mode:
This mode is used in Python to get
immediate results of our code.
 It is used for learning, testing and
experimenting.
In Python, interactive mode is denoted by
symbol: >>>
DEMONSTRATION
Interactive Mode:
DRAWBACK:

We cannot save the statements for further


use.
We have to retype the statements
Script Mode:
It enables you to write block of code.
 script is saved with .py extension
Result /Output is shown in Interactive mode.

You might also like