0% found this document useful (0 votes)
84 views

01 Python Introduction

Python is an interpreted, interactive, object-oriented programming language that is easy to learn and maintain. It was created by Guido van Rossum in the late 1980s and early 1990s at the National Research Institute for Mathematics and Computer Science in the Netherlands. Python draws influences from many other languages like ABC, Modula-3, C, C++, ALGOL-68, SmallTalk, Unix shell scripting languages. It has a broad standard library, supports interactive and interpretive modes, is portable, and is used for web and desktop GUI development, databases, and more.

Uploaded by

bhuvangates
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views

01 Python Introduction

Python is an interpreted, interactive, object-oriented programming language that is easy to learn and maintain. It was created by Guido van Rossum in the late 1980s and early 1990s at the National Research Institute for Mathematics and Computer Science in the Netherlands. Python draws influences from many other languages like ABC, Modula-3, C, C++, ALGOL-68, SmallTalk, Unix shell scripting languages. It has a broad standard library, supports interactive and interpretive modes, is portable, and is used for web and desktop GUI development, databases, and more.

Uploaded by

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

Python - Introduction

B.BHUVANESWARAN
ASSISTANT PROFESSOR / CSE
RAJALAKSHMI ENGINEERING COLLEGE
RAJALAKSHMI NAGAR
THANDALAM
CHENNAI 602 105
Objective

What is Python?
History of Python
Python features
What is Python?

Python is Interpreted
Python is Interactive
Python is Object-Oriented
Python is Beginner's Language
History of Python

Python was developed by Guido van Rossum.


In the late eighties and early nineties.
At the National Research Institute for Mathematics
and Computer Science in the Netherlands.
History of Python

Python is derived from many other languages,


including
ABC
Modula-3
C
C++
ALGOL-68
SmallTalk
Unix shell and
other scripting languages.
Python Features

Easy-to-learn
Easy-to-maintain
A broad standard library
Interactive Mode
Portable
Expandable
Databases
GUI Programming
Scalable
Available Online Interpreters

http://codepad.org/
http://www.pythontutor.com/visualize.html#mode=
edit
http://www.codeskulptor.org/
Command Line Interpreter

Python has command line interpreter that helps in


executing python commands by directly entering
into python without writing a script.
Examples

>> 2 + 2
4
>> 50 - 5*6
20
>>> (50 - 5*6) / 4.0
5.0
Examples...

>>> 8 / 5
# division always returns a floating point number
1.6
>>> width = 20
>>> height = 5 * 9
>>> width * height
900
Python on Desktop

https://store.enthought.com/downloads/
Queries?
Thanks...!

You might also like