Learn Python, Microsoft 365 and Google Workspace
if
statement in Python is a conditional statement that allows you to execute a block of code only if a certain condition is met.if
, elif
, and else
statements.The general syntax of the if statement is as follows:
if condition:
# code to execute if condition is True
The condition
can be any logical expression. If the condition is evaluated to true
, the block of statements
is executed. Otherwise, the block of statements
is skipped.
Here is a simple example of an if statement in PYTHON:
x = 10
if x > 5:
print('x is greater than 5.')
This code will print the message x is greater than 5.
to the console.
You can also use elif
statements to check for multiple conditions. The general syntax of the elif statement is as follows:
if condition1:
# code to execute if condition1 is True
elif condition2:
# code to execute if condition2 is True
If the condition
for the if statement is evaluated to false
, the python interpreter will check the condition
for the first elif statement. If the condition for the elif statement is evaluated to true
, the corresponding block of statements
is executed. Otherwise, the python interpreter will check the condition
for the next elif statement, and so on.
Here is an example of an if statement with an elif statement:
x = 3
if x > 5:
print('x is greater than 5.')
elif x < 5:
print('x is less than 5.')
This code will print the message “x is less than 5.” to the console.
You can also use an else statement to check for all other conditions. The general syntax of the else statement is as follows:
if condition1:
# code to execute if condition1 is True
elif condition2:
# code to execute if condition2 is True
else:
# code to execute if none of the conditions are True
If all of the conditions for the if and elseif statements are evaluated to false
, the block of statements
in the else
statement is executed.
Here is an example of an if statement with an elif
statement and an else
statement:
x = 2
if x > 5:
print('x is greater than 5.')
elif x == 5:
print('x is equal to 5.')
else:
print('x is less than 5.')
Output: This code will print the message “x is less than 5.” to the console.
number = 10
if number > 0:
print("The number is positive")
else:
print("The number is not positive")
Explanation: This code checks if the variable number
is greater than 0. If true, it prints “The number is positive”, otherwise it prints “The number is not positive”.
number = 7
if number % 2 == 0:
print("The number is even")
else:
print("The number is odd")
Explanation: This code checks if the variable number
is even or odd. If number % 2
equals 0, it is even; otherwise, it is odd.
age = 25
if age < 18:
print("Minor")
else:
print("Adult")
Explanation: This code classifies a person as a “Minor” if their age is less than 18, and as an “Adult” otherwise.
score = 85
if score >= 90:
print("Grade: A")
elif score >= 80:
print("Grade: B")
elif score >= 70:
print("Grade: C")
else:
print("Grade: F")
Explanation: This code assigns a grade based on the score
. It uses multiple elif
statements to check for different score ranges.
age = 17
if age >= 18:
print("You are eligible to vote")
else:
print("You are not eligible to vote")
Explanation: This code checks if a person is eligible to vote based on their age. If age
is 18 or more, it prints “You are eligible to vote”; otherwise, it prints “You are not eligible to vote”.
number = -5
if number >= 0:
if number == 0:
print("The number is zero")
else:
print("The number is positive")
else:
print("The number is negative")
Explanation: This code uses nested if-else
statements to check if the number is zero, positive, or negative.
temperature = 30
if temperature > 30:
print("It's a hot day")
else:
print("It's not a hot day")
Explanation: This code checks if the temperature is greater than 30. If true, it prints “It’s a hot day”; otherwise, it prints “It’s not a hot day”.
string = "Hello, World!"
if len(string) > 10:
print("The string is long")
else:
print("The string is short")
Explanation: This code checks if the length of the string
is greater than 10. If true, it prints “The string is long”; otherwise, it prints “The string is short”.
Objective: Write a Python program that checks if the provided password matches the correct password and prints an appropriate message.
Instructions:
password
and set it to a string value.password
with the correct password "password123"
."password123"
, print "Access granted"
."Access denied"
.Example Input/Output:
Input 1:
password = "password123"
Output 1:
Access granted
Input 2:
password = "wrongpassword"
Output 2:
Access denied
Explanation:
password
with the correct password "password123"
."Access granted"
."Access denied"
.
Write a Python program that compares two numbers a
and b
. If a
is greater than b
, the program should print the message “a is greater than b”. Otherwise, it should print “a is not greater than b”.
Input:
a
and b
to specific values (15 and 20 in this case).Expected Output:
a
and b
:
If a
is greater than b
:
Output:
"a is greater than b"
If a
is less than or equal to b
:
Output:
"a is not greater than b"
Example:
Input:
a = 15, b = 20
Output:
"a is not greater than b"
Input:
a = 25, b = 20
Output:
"a is greater than b"
Explanation:
This code checks the relationship between a
and b
. If a
is greater than b
, it prints a message saying so; otherwise, it prints a different message.
Write a Python program that checks whether a number x
is negative, zero, or positive. The program should print:
x
is less than 0,x
is equal to 0, andx
is greater than 0.Input:
x
to a specific value (10 in this case).Expected Output:
x
:
If x
is less than 0:
Output:
"Negative"
If x
is equal to 0:
Output:
"Zero"
If x
is greater than 0:
Output:
"Positive"
Example:
Input:
x = 10
Output:
"Positive"
Input:
x = -5
Output:
"Negative"
Input:
x = 0
Output:
"Zero"
Explanation:
This code checks whether the value of x
is less than 0, equal to 0, or greater than 0, and prints the corresponding message based on the comparison.
Video: How to Write Single-Line Code Instead of If-Else Statements
Write a program that takes two numbers as input and prints whether the first number is greater than, less than, or equal to the second number.
Input:
Enter the first number: 10
Enter the second number: 5
Sample Output:
10 is greater than 5
Another Sample Input:
Enter the first number: 4
Enter the second number: 4
Output:
4 is equal to 4
Write a simple program that asks for the user’s age and checks if the user is older than 18.
Sample Input:
Enter your age: 20
Sample Output:
You are older than 18.
Another Sample Input:
Enter your age: 16
Output:
You are younger than 18.
Input:
n
.Output:
Example:
6
Output:
Yes
10
No
Input:
age
, representing the person’s age.country
, representing the person’s country.Output:
Example:
age = 20
country = USA
Output:
Eligible to vote
age = 17
country = USA
Output:
Not eligible to vote
age = 25
country = Canada
Not eligible to vote