0% found this document useful (0 votes)
88 views5 pages

Python PPT by Keshav Gupta

Python was created by Guido van Rossum in 1991. It is an interpreted, object-oriented programming language that is easy to learn and use for rapid application development. Python code can be run interactively or in script mode by saving code to a file. Keywords have specific predefined meanings in Python and must be written as shown in the documentation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ZIP, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
88 views5 pages

Python PPT by Keshav Gupta

Python was created by Guido van Rossum in 1991. It is an interpreted, object-oriented programming language that is easy to learn and use for rapid application development. Python code can be run interactively or in script mode by saving code to a file. Keywords have specific predefined meanings in Python and must be written as shown in the documentation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ZIP, PDF, TXT or read online on Scribd
You are on page 1/ 5

Python

Created by keshav
What is python ?

• Python is a very popular and easy to learn programming language created by guido
van possum in 1991

• Python is an interpreted, object-oriented, high-level programming language with


dynamic semantics. Its high-level built in data structures, combined with dynamic typing
and dynamic binding, make it very attractive for Rapid Application Development, as well as
for use as a scripting or glue language to connect existing components together. Python's
simple, easy to learn syntax emphasizes readability and therefore reduces the cost of
program maintenance.

There are two ways to run python
A)Interactive mode B)script mode

• In in the interaction mode we can type a python statement on the >>> promote
directly.As soon as we press enter, the interpreter executes the statement and displays
the result
• In script mode we can write a python program in a fill ,save it and then use
interpreter to execute the program from the fill such programs having more than few
Lins we should save code for future use python scrip can be created using any editor
How to execute a python in script mode

1 In idle, go to run
2 click on run module
OR
Press f5 (or fn+f5 )
Python keywords

Keywords are received words.Each keyword has a specific meaning to the


python interpreter.As python is a case sensitive, keyboard must be written
exactly as given in table 

You might also like