Conditional STMT Cs
Conditional STMT Cs
Conditional STMT Cs
CONDITIONAL
STATEMENTS
Conditional
statement
( decision
making )
If
statement
If
statement
If…else
statement
If…else
example
elif
statements
elif
statements
1) Write a program in python to check whether
person is eligible to vote or not
if_else
4) Write a program to accept three integers and
print the smallest. (smallest.py)
5) Program that inputs three numbers and calculate
two sums as per this:
e.g
based on (twosums.py)
if_else
based on
8)A store charges 120rs per item if you buy
if_else less than 10 items. if you buy between 10 and
99 items , the cost is 100 rs per item. If you
buy 100 or more items , the cost is 70 rs.write
a program that asks the user how many items
they are buying and prints the total cost. \
9) Program that reads three
numbers(integers) and print them in
Programs ascending order (ascending.py)