Python1_Introduction_Day1
Python1_Introduction_Day1
PPT SL.NO.: 01 of 50
Anaconda Distribution
Identifier in Python
Python Indentation
Reserved Keywords in Python
Variables in Python
Literals in Python
Operators in Python
Introduction to Python
It is a very simple high level language with vast library of add-on modules.
Python runs on an interpreter system, meaning that code can be executed as soon as
it is written. This means that prototyping can be very quick.
Programs written in Python are easily readable and understandable. It’s Syntax
very simple that’s why Python is said to Beginner's programming Language.
Software development
Mathematics
System scripting
Q. What can Python do?
Intel, Cisco, HP, IBM, etc use Python for hardware testing.
Python3.x
To check if you have python installed on a Windows PC, search in the start
bar for Python or run the following on the Command Line (cmd.exe):
C:\Users\Your Name>python –version
To check if you have python installed on a Linux or Mac, then on linux open
the command line or on Mac open the Terminal and type:
python –version
If you find that you do not have python installed on your computer, then you
can download it for free from the following
website: https://www.python.org/
Working in Python
Before you start working in Python, you need to install Python
on your computer.
OR
Click Start button All Programs Python
(Command Line)
To Work in Interactive Mode
2. It will open Python Shell where you will see the
Python prompt (signs i.e., >>>).
OUTPUT:
Hello World
IPython console
Working in Spyder IDE
Step 5: Script Mode:
To work in script mode, type your command in the editor pane.
(a) To start a new script file, click File New File…
(b) To save current script, use command File Save
Editor Pane
Working in Spyder IDE
Script Mode:
(c) Now you can run by clicking at Run command or press F5.
Identifier in Python
Identifier is the name given to a variable, function, class or
object. All identifiers must obey the following rules.
An identifier:
1. Is a sequence of characters that consists of letter, digit and
underscore.
2. Can be of any length
3. Start with letter which can be lower case
4. Can start with underscore ‘_’
5. Can not start with a digit
6. Can not be a keyword
Example : _sum, person
Python Indentation
Indentation refers to the spaces at the beginning of a code
line.
Where in other programming languages the indentation in
code is for readability only, but the indentation in Python is
very important.
Python uses indentation to indicate a block of code.
Example:
if 5 > 2:
print("Five is greater than two!")
Note: Python will give you an error if you skip the indentation.
Reserved Keywords in Python
Creating a Comment
Comments starts with a #, and python will ignore them:
Example :
# this is a comment
print(“Hello”)
“ “ “this is a very long sentence
and it after two lines” ” ”
www.nielit.gov.in/haridwar