List Item 1 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 1List Item 2 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 2List Item 3 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 3List Item 4 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 4New Paragraph
New Paragraph
New Paragraph
In programming, we often need to make decisions based on certain conditions. For example, you might want your program to perform a certain action if a condition is true, and a different action if the condition is false. This is where if-else statements come into play.
In Python, if-else statements allow you to control the flow of your program based on conditions. Here's how they work:
if condition:
# code to execute if condition is true
else:
# code to execute if condition is false
Imagine you are organizing a school sports day and you want to check if a student is eligible to participate based on their age.
Here's how you can write this in Python:
age = 13
if age >= 12:
print("You are eligible to participate in the sports day.")
else:
print("You are not eligible to participate in the sports day.")
number = -5
if number >= 0:
print("The number is positive.")
else:
print("The number is negative.")
score = 75
if score >= 50:
print("You passed the exam!")
else:
print("You failed the exam. Try again!")
year = 2024
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(f"{year} is a leap year.")
else:
print(f"{year} is not a leap year.")
number = 7
if number % 2 == 0:
print("The number is even.")
else:
print("The number is odd.")
score = 85
if score >= 90:
grade = 'A'
elif score >= 80:
grade = 'B'
elif score >= 70:
grade = 'C'
elif score >= 60:
grade = 'D'
else:
grade = 'F'
print(f"Your grade is: {grade}")
All Rights Reserved | Sandy Learning Hub
Powered by Yectra