Back to Python
2026-04-246 min read

JS Conditional (Python Programming)

Learn JS Conditional (Python Programming) step by step with clear examples and exercises.

Why This Matters

Understanding conditional statements in Python is essential for writing versatile and dynamic scripts. As a Python programmer, learning JavaScript-style conditionals can help you write more efficient code that responds to user input or changing conditions. This lesson will demonstrate the equivalent of JavaScript's if, else if, and else statements in Python, with examples and practical applications.

Prerequisites

Before diving into JavaScript-style conditionals in Python, it is essential to have a basic understanding of:

  1. Variables and data types in Python
  2. Basic arithmetic operations (addition, subtraction, multiplication, division)
  3. Comparison operators (==, !=, >, <, >=, <=)
  4. The concept of functions in Python
  5. Control flow structures such as loops and if-else statements
  6. Basic understanding of user input using the input() function

Core Concept

Python's conditional statements allow you to execute code based on a specific condition. This section will cover the following constructs:

  1. if statement
  2. elif (else if) statement
  3. else statement
  4. Nested if statements
  5. Using parentheses for complex conditions
  6. The pass statement
  7. Chaining comparison operators

1. if Statement

The basic structure of an if statement in Python is as follows:

if condition:

Code to execute if the condition is True


For example, let's check if a number is greater than 10:

num = 15

if num > 10:

print("The number is greater than 10.")


### 2. `elif` (else if) Statement

You can use multiple `elif` statements to check for different conditions, one after another. If the first condition is False, Python will move on to the next `elif` statement and repeat this process until it finds a True condition or reaches the end of the block. The basic structure of an `elif` statement is as follows:

if condition1:

Code to execute if condition1 is True

elif condition2:

Code to execute if condition1 is False and condition2 is True

...

else:

Code to execute if none of the conditions are True


For example, let's check if a number is between 5 and 15:

num = 12

if num > 15:

print("The number is greater than 15.")

elif num < 5:

print("The number is less than 5.")

else:

print("The number is between 5 and 15.")


### 3. `else` Statement

The `else` statement in Python will execute the code block if none of the conditions in the `if` or `elif` statements are True. The basic structure of an `else` statement is as follows:

if condition1:

Code to execute if condition1 is True

elif condition2:

Code to execute if condition1 is False and condition2 is True

...

else:

Code to execute if none of the conditions are True


For example, let's check if a number is an even or odd number:

num = 6

if num % 2 == 0:

print("The number is even.")

else:

print("The number is odd.")


### 4. Nested `if` Statements

You can use nested `if` statements to create more complex conditions. The inner `if` statement will only execute if the outer condition is True:

x = 10

if x > 5:

print("x is greater than 5.")

if x < 15:

print("x is also less than 15.")


### 5. Using Parentheses for Complex Conditions

When the condition contains multiple operations, it's a good practice to use parentheses to make the code easier to read and avoid ambiguity:

if (a > b) and (c < d):

print("Both conditions are True.")


### 6. The `pass` Statement

The `pass` statement is a "no-op" or placeholder that does nothing when executed. It can be used in an `else` block to ensure that no errors occur if there is no code to execute:

if condition:

Code to execute if the condition is True

else:

pass


### 7. Chaining Comparison Operators

In Python, you can chain comparison operators to check multiple conditions in a single line:

if x == 5 or y == 10:

print("Either x is 5 or y is 10.")

Worked Example

Let's create a simple Python script that takes user input and checks if it is a valid password. The password must be between 8 and 16 characters long, contain at least one digit, and at least one uppercase letter.

import re

def validate_password(password):
if len(password) < 8 or len(password) > 16:
return False

if not re.search(r'\d', password):
return False

if not re.search(r'[A-Z]', password):
return False

return True

password = input("Enter your password: ")
if validate_password(password):
print("Password is valid.")
else:
print("Password is invalid. Please make sure it meets the following requirements:\n"
"- Between 8 and 16 characters long\n"
"- Contains at least one digit\n"
"- Contains at least one uppercase letter")

Common Mistakes

  1. Forgetting to use parentheses around the condition in an if or elif statement:

Incorrect:

if a > b and c > d:
print("Both conditions are True.")

Correct:

if (a > b) and (c > d):
print("Both conditions are True.")
  1. Using = instead of == for comparison:

Incorrect:

if a = 5:
print("a is equal to 5.")

Correct:

if a == 5:
print("a is equal to 5.")
  1. Forgetting the colon (:) at the end of the if, elif, or else statement:

Incorrect:

if condition:

Code to execute if the condition is True

print("This will not be printed.")


Correct:

if condition:

Code to execute if the condition is True

print("This will be printed.")


4. Using a single equals sign (`=`) instead of double equals signs (`==`) when assigning values to variables within `if` or `elif` statements:

Incorrect:

if x = 5:

print("x is equal to 5.")


Correct:

if x == 5:

print("x is equal to 5.")

x = 6

Practice Questions

  1. Write a Python script that takes two numbers as input and checks if they are equal, using an if statement. If they are not equal, it should find the larger number.
  1. Write a Python function called is_leap_year that takes a year as input and returns True if the year is a leap year (i.e., divisible by 4 but not divisible by 100, unless it is also divisible by 400) and False otherwise.
  1. Write a Python function called find_max that takes a list of numbers as input and returns the maximum number in the list using conditional statements.

FAQ

What is the difference between == and = in Python?

  • == is a comparison operator that checks if two values are equal, while = is an assignment operator that assigns a value to a variable.

Can I use multiple if statements without using elif or else?

  • Yes, you can use multiple if statements in Python, but it may lead to unnecessary code repetition and should be avoided if possible.

What happens when none of the conditions in an if, elif, or else statement are True?

  • If none of the conditions are True, nothing will happen inside the corresponding block of code. However, you can use an empty pass statement to ensure that no errors occur if there is no code to execute.

How do I handle multiple conditions with a single if statement in Python?

  • You can chain comparison operators or use logical operators like and, or, and not to handle multiple conditions within a single if statement.

What is the purpose of the pass statement in Python?

  • The pass statement is a "no-op" or placeholder that does nothing when executed. It can be used in an else block to ensure that no errors occur if there is no code to execute.
JS Conditional (Python Programming) | Python | XQA Learn