You are on page 1of 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