Python PPT
Python PPT
Abishek R. S.
1 / 10
Features of Python
• Open Source
• Case Sensitive
2 / 10
Rules for Naming variables
• Cannot be a keyword
for = 12
• Dictionary: Mapping
a = {"Hoody" : 434003 , "Gooty": 414001 }
a["Hoody"] to access bus number of Hoody
4 / 10
Common Operators
5 / 10
If Else loop
Syntax:
if condition1:
code1
elif condition2:
code2
else:
code3
6 / 10
For loop
Syntax:
7 / 10
While loop
Syntax:
while condition:
code
8 / 10
Commonly used functions
9 / 10
Commonly used functions (Dynamics)
• strt : Initialization
10 / 10