0% found this document useful (0 votes)
7 views

Condition Using If

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Condition Using If

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 40

CONDITIONAL AND ITERATIVE

STATEMENTS
Learning Outcomes

▪ Types of statements in Python


▪ Statement of Flow Control
▪ Program Logic DevelopmentTools
▪ if statement of Python
▪ Repetition ofTask - A necessity
▪ The range() function
▪ Iteration /Looping statement
▪ break and continuestatement
Types o f Statement in Python

▪ Statements are the instructions given to


computer to perform any task. Task may be
simple calculation, checking the condition or
repeating action.
▪ Python supports 3types of statement:
 Empty statement
 Simple statement
 Compound statement
Empty Statement

▪ It is the simplest statement i.e. a statement


which does nothing. It is written by using
keyword –pass
▪ Whenever python encountered pass it does
nothing and moves to next statement in flow
of control
▪ Required where syntax of python required
presence of a statement but where the logic
of program does. More detail will be explored
with loop.
Simple Statement

▪ Any single executable statement in Python is


simple statement. Fore.g.
▪ Name = input(“enteryour name “)
▪ print(name)
Compound Statement

▪ It represent group of statement executed as


unit. The compound statement of python are
writtenin a specific pattern:

Compound_Statement_Header :
indented_body containing multiple
simple or compoundstatement
Compound Statement has:

▪ Header which begins with keyword/function


and ends with colon(:)
▪ A body contains of one or more python
statements each indented inside the header
line. All statement in the body or under any
header must be at the same level of
indentation.
Statement Flow Control

▪ In python program statement may execute in


a sequence, selectively or iteratively. Python
programming support 3 Control Flow
statements:
1. Sequence
2. Selection
3. Iteration
Sequence
▪ It means python statements are executed
one after another i.e. from the first statement
to last statement without any jump.

Statement 1

Statement 2
Selection :Itmeans executionofstatement will depend uponthecondition.If
the condition is true then it will execute Action 1 otherwise Action 2. In Python we
use if to perform selection

Action 1

True
Condition ? Statement 1 Statement 2

False

Statement 1
Action 2

Statement 2
Selection

▪ We apply Decision making or selection in our


real life also like if age is 18 or above person
can vote otherwise not. If pass in every
subject is final exam student is eligible for
promotion.
▪ You can think of more real life examples.
Iteration -Looping

▪ Iteration means repeating of statement


depending upon the condition. Till the time a
condition is True statements are repeated again
and again. Iteration construct is also known as
Looping construct
▪ In real world we are using Looping construct like
learning table of any number we multiply same
number from 1 to 10, Washing clothes using
washing machine till the time is over, our school
hours starts from assembly to last period, etc.
Iteration -Looping

False
Condition ? Exit from iteration

True

Statement 1
Loop Body
Python supports for and
Action 2

Statement 2 while statement for


Looping construct
Error and Exceptions

▪ Error means ‘bugs’ in a program, i.e. either


program is not running or running but not
producing the expectedoutput.
▪ Exceptions are those errors which appears
during the execution time of program i.e. there
are some exceptional condition in which
program is notsuccessfully executing.
▪ Types of Error:
 Syntax Error
 Semantic Error
 Logical Error
 Runtime Error
Syntax Error
▪ It occurs before the execution of program.
▪ It occurs due to violation of programming language rule
for e.g. missing parenthesis, incorrect use of operators
etc.

Syntax error due to


missing parenthesis
Semantic Error

▪ occurs when statements are not meaningful. For


e.g. ‘Sita Plays Piono’ is syntactically and
semantically correct but ‘Piono plays Sita’ is
syntactically correct but semantically incorrect.
Take another exampe : X*Y=Z is semantically
incorrect because expression cant comes before
the assignment operator;
Logical Error

▪ occurs when program is executing successfully but not


producing the correct output. It is one of the most
difficult error to trace and debug. It may occurs by use or
wrong operators like use of ‘*’ in place of ‘+’ Or wring
C=B/Ain place of C=A/B etc.
With input 20 as n1
and 10 as n1,
expected resultwas
2 but output is 0.5,
because expression
is n2/n1 not n1/n2
Runtime Error

▪ It occurs during the execution of program.


▪ Itis also known as exception.
▪ It occurs due to some wrong operation, input, etc. the
most common runtime error is “divide by zero”
Exception handling ( t r y & except)

▪ try : this block is used for writing those statements in


which exception mayoccurs.
▪ except : this block is used for handling the exception
occurs in try block i.e. decides what to do with exception.
i f Statement o f Python
▪ ‘if’ statement of python is used to execute
statements based on condition. It tests the
condition and if the condition is true it
perform certain action, we can also provide
action for false situation.
▪ if statement in Python is of many forms:
 ifwithout false statement
 if with else
 if with elif
 Nested if
Simple “ i f ”
▪ In the simplest form if statement in Python
checks the condition and execute the
statement if the condition is true and do
nothing if the condition is false.
▪ Syntax: All statement
belonging to if
if condition: must have same
indentation level
Statement1
Statements ….
* * if statement is compound statement having
header and a body containing intended
statement.
Points to remember with “ i f ”

▪ It must contain valid condition which


evaluates to eitherTrue or False
▪ Condition must followed by Colon (:) , it is
mandatory
▪ Statement inside if must be at same
indentation level.
Inputmonthlysaleofemployeeandgivebonusof10%
ifsaleismorethan50000otherwisebonuswillbe0

bonus =0
sale = int(input("Enter Monthly Sales :"))
if sale>50000:
bonus=sale * 10 /100
print("Bonus = " + str(bonus))
1.WAPto enter2numberandprintthelargestnumber
2.WAPto enter3numberandprintthe largestnumber
1.WAPto enter2numberandprintthelargestnumber

n1 = int(input("Enter first number "))


n2 = int(input("Enter second number "))
large =n1
if (large<n2):
large=n2
print("Largest number is ", large)
2.WAPto enter3numberandprintthelargestnumber

n1 = int(input("Enter first number "))


n2 = int(input("Enter second number "))
n3 = int(input("Enter third number "))
large =n1
if (large<n2):
large=n2
if(large<n3):
large=n3
print("Largest number is ", large)
if with else

▪ if with else is used to test the condition and if


the condition is True it perform certain
action and alternate course of action if the
condition is false.
▪ Syntax:
if condition:
Statements
else:
Statements
Input Age of person and print whether the person is
eligiblefor votingornot

age = int(input("Enter yourage "))


if age>=18:
print("Congratulation! you are eligible for voting ")
else:
print("Sorry!You are not eligible for voting")
To Do…
1. WAP to enter any number and check it is even or
odd
2. WAP to enter any age and check it is teenager or
not
3. WAP to enter monthly sale of Salesman and give
him commission i.e. if the monthly sale is more
than 500000 then commision will be 10% of
monthly sale otherwise 5%
4. WAP to input any year and check it is Leap Year or
Not
5. WAP to Input any number and print Absolute
value of that number
6. WAP to input any number and check it is positive
or negative number
if with elif
▪ if with elif is used where multiple chain of condition is to
be checked. Each elif must be followed by condition: and
then statement for it. After every elif we can give else
which will be executed if all the condition evaluates to
false
▪ Syntax:
if condition:
Statements
elif condition:
Statements
elif condition:
Statements
else:
Statement
Inputtemperatureof waterandprintitsphysicalstate

temp = int(input("Enter temperature of water "))


if temp>100:
print("Gaseous State")
elif temp<0:
print("Solid State")
else:
print("Liquid State")
Input 3 side of triangle and print the type of triangle –
Equilateral,Scalene, Isosceles

s1 = int(input("Enter side 1"))


s2 = int(input("Enter side 2"))
s3 = int(input("Enter side 3"))
if s1==s2==s3:
print("Equilateral")
elif s1!=s2!=s3!=s1:
print("Scalene")
else:
print("Isosceles")
Program to calculate and print roots of a quadratic equation:
ax2+bx+c=0(a!=0)

import math
print("For quadratic equation, ax**2 + bx + c = 0,
enter coefficients ")
a = int(input("enter a"))
b = int(input("enter b"))
c = int(input("enter c"))
if a==0:
print("Value of ",a," should not be zero")
print("Aborting!!!")
else:
delta = b*b - 4 *a * c
Program to calculate and print roots of a quadratic equation:
ax2+bx+c=0(a!=0)

if delta>0:
root1=(-b+math.sqrt(delta))/(2*a)
root2=(-b-math.sqrt(delta))/(2*a)
print("Roots are Real and UnEqual")
print("Root1=",root1,"Root2=",root2)
elif delta==0:
root1=-b/(2*a)
print("Roots are Real and Equal")
print("Root1=",root1,"Root2=",root1)
else:
print("Roots are Complexand
Imaginary")
To Do…
1. WAP to enter marks of 5 subject and calculate total, percentage
and also division.
Percentage Division
>=60 First
>=45 Second
>=33 Third
otherwise Failed
2. WAP to enter any number and check it is positive, negative or zero
number
3.WAP to enter Total Bill amount and calculate discount as per given
table and also calculate Net payable amount (total bill – discount)
Total Bill Discount
>=20000 15% ofTotal Bill
>=15000 10% ofTotal Bill
>=10000 5% of Total Bill
otherwise 0 ofTotal Bill
To Do…
4. WAP to enter Bill amount and ask the user the payment
mode and give the discount based on payment mode. Also
display net payableamount
Mode Discount
Credit Card 10% of billamount
Debit Card 5% of bill amount
Net Banking 2% of bill amount
otherwise 0
5.WAP to enter two number and ask the operator (+ - * / )
from the user and display the result by applying operator on
the two number
6. WAPto enter any character and print it is Upper Case,
Lower Case, Digit or symbol
7.WAPto enter 3number and print the largest number
8.WAP to input day number and print corresponding day
name for e.g if input is 1output should be SUNDAYand so on.
Nested i f
▪ In this type of “if” we put if within another if as a
statement of it. Mostly used in a situation where we
want different else for each condition. Syntax:
if condition1:
if condition2:
statements
else:
statements
elif condition3:
statements
else:
statements
WAPtocheckentered year is leapyear or not

year = int(input("Enterany year "))


if year% 100 == 0:
if year% 400 == 0:
print("Year is LeapYear ")
else:
print("Year is not LeapYear")
elif year %4==0:
print("Year is LeapYear ")
else:
print("Year is not LeapYear")
Program to read three numbers and prints them in

y = int(input("Enter second number "))


z = int(input("Enter third number "))
if y>=x<=z:
if y<=z:
min,mid,max=x,y,z
else:
min,mid,max=x,z,y
elif x>=y<=z:
if x<=z:
min,mid,max=y,x,z
else:
min,mid,max=y,z,x
elif x>=z<=y:
if x<=y:
min,mid,max=z,x,y
else:
min,mid,max=z,y,x
print("Numbers in ascending order = ",min,mid,max)
Storing Condition
▪ In a program if our condition is complex and it
is repetitive then we can store the condition
in a name and then use the named condition
in if statement. It makes program more
readable.
▪ For e.g.
▪ x_is_less=y>=x<=z
▪ y_is_less=x>=y<=z
▪ Even = num%2==0

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy