Python
Python
• x=5
y = 10
print(x + y)
print('a','tutorial','on','python','print','function',sep='\n')
• a
• tutorial
• on
• python
• print
• function
print('a','tutorial','on','python','print','function',sep=',')
• a,tutorial,on,python,print,function
• a=2
b = "Sachin"
print("%d is an integer while %s is a string."%(a,b))
Yes
if
condition
No
If Statement
a = 33
b = 200
if b > a:
print("b is greater than a")
If else statement
• if condition then
– True condition statements.
• else
– False condition statements.
a = 33
b = 200
if b > a:
print("b is greater than a")
else:
print("a is greater than b")
Nested if else
if(Condition1):
Indented statement block for Condition1
elif(Condition2):
Indented statement block for Condition2
else:
Alternate statement block if all condition
check above fails
Loops
• Python has two primitive loop commands:
– while loops
– for loops
• Loops have 3 sections –
– Initialization
– End condition
– Increment/decrement of loop
while loop
• With the while loop we can execute a set of
statements as long as a condition is true.
• Ex
i=1
while i < 6:
print(i)
i += 1
for loop
for val in list_item:
statements of for body loop
for x in “Sachin":
print(x)
for i in range(0,11):
sm = sm + i
0
1
2
3
4
5
Finally finished!