Page 115 - Touchpad_Plus_V3.2_Class 7
P. 115
Program 4: To display one of the two alternate messages.
Program4.py
File Edit Format Run Options Window Help
#Program to display one of two alternate massages
passing_score = 60
my_score = int(input('Enter a score: '))
if(my_score >= passing_score):
print('congratulations on passing the exam')
else:
print('You failed, try harder next time')
On running the above program, we get the following output:
Output
Enter a score: 78
Congratulations on passing the exam
Enter a score: 45
You failed, try harder next time
Tech Funda
Find the error in the following code and rewrite the code:
if(age > 18)
print(‘You are eligible to vote’)
else:
print(‘Not eligible to vote’)
NESTED IF STATEMENT
Python allows the nested if statement. This means that you have an if statement inside
another if statement. The inner if block will run only when the first if condition evaluates
to true.
The syntax of nested if statement is shown below:
Syntax:
if (Test Expression1):
if (Test Expression2):
Indented block 1
else:
Conditional Statements in Python 113

