Python

Python in 30 Days: Day 9 – Conditionals

Python in 30 Days: Day 9 – Conditionals

 

Day 9

Conditionals

By default, statements in a Python script are executed sequentially from top to bottom. If the processing logic requires so, the sequential flow of execution can be altered in two ways:

  • Conditional execution: a block of one or more statements will be executed if a certain expression is true
  • Repetitive execution: a block of one or more statements will be repetitively executed as long as a certain expression is true. In this section, we will cover ifelseelif statements. The comparison and logical operators we learned in previous sections will be useful here.

If Condition

In Python and other programming languages the keyword if is used to check if a condition is true and to execute the block code. Remember the indentation after the colon.

# syntax
if condition:
    this part of code runs for truthy conditions

Example: 1

a = 3
if a > 0:
    print('A is a positive number')
# A is a positive number

As you can see in the example above, 3 is greater than 0. The condition was true and the block code was executed. However, if the condition is false, we do not see the result. To see the result of the false condition, we should have another block, which is going to be else.

If Else

If condition is true the first block will be executed, if not the else condition will run.

# syntax
if condition:
    this part of code runs for truthy conditions
else:
     this part of code runs for false conditions

**Example: **

a = 3
if a < 0:
    print('A is a negative number')
else:
    print('A is a positive number')

The condition above proves false, therefore the else block was executed. How about if our condition is more than two? We could use _ elif_.

If Elif Else

In our daily lives, we make decisions daily. We make decisions not by checking one or two conditions but multiple conditions. Similar to life, programming is also full of conditions. We use elif when we have multiple conditions.

# syntax
if condition:
    code
elif condition:
    code
else:
    code

**Example: **

a = 0
if a > 0:
    print('A is a positive number')
elif a < 0:
    print('A is a negative number')
else:
    print('A is zero')

Short Hand

# syntax
code if condition else code

**Example: **

a = 3
print('A is positive') if a > 0 else print('A is negative') # first condition met, 'A is positive' will be printed

Nested Conditions

Conditions can be nested

# syntax
if condition:
    code
    if condition:
    code

**Example: **

a = 0
if a > 0:
    if a % 2 == 0:
        print('A is a positive and even integer')
    else:
        print('A is a positive number')
elif a == 0:
    print('A is zero')
else:
    print('A is a negative number')

We can avoid writing nested conditions by using the logical operators and.

If Condition and Logical Operators

# syntax
if condition and condition:
    code

**Example: **

a = 0
if a > 0 and a % 2 == 0:
        print('A is an even and positive integer')
elif a > 0 and a % 2 !=  0:
     print('A is a positive integer')
elif a == 0:
    print('A is zero')
else:
    print('A is negative')

If and Or Logical Operators

# syntax
if condition or condition:
    code

**Example: **

user = 'James'
access_level = 3
if user == 'admin' or access_level >= 4:
        print('Access granted!')
else:
    print('Access denied!')

 Now do some exercises for your brain and muscles.

Exercises: Python in 30 Days: Day 9 – Conditionals

Exercises: Level 1

  1. Get user input using input(“Enter your age: ”). If the user is 18 or older, give feedback: You are old enough to drive. If below 18 give feedback to wait for the missing amount of years. Output:
    Enter your age: 30
    You are old enough to learn to drive.
    Output:
    Enter your age: 15
    You need 3 more years to learn to drive.
  2. Compare the values of my_age and your_age using if … else. Who is older (me or you)? Use input(“Enter your age: ”) to get the age as input. You can use a nested condition to print ‘year’ for a 1-year age difference, ‘years’ for bigger differences, and a custom text if my_age = your_age. Output:
    Enter your age: 30
    You are 5 years older than me.
  3. Get two numbers from the user using the input prompt. If a is greater than b return a is greater than b, if a is less than b return a is smaller than b, else a is equal to b. Output:
Enter number one: 4
Enter number two: 3
4 is greater than 3
### Exercises: Level 2
  1. Write a code that gives grade to students according to their scores:

    80-100, A
    70-89, B
    60-69, C
    50-59, D
    0-49, F
  2. Check if the season is Autumn, Winter, Spring, or Summer. If the user input is: September, October, or November, the season is Autumn. December, January, or February, the season is Winter. March, April, or May, the season is Spring June, July, or August, the season is Summer

  3. The following list contains some fruits:

    fruits = ['banana', 'orange', 'mango', 'lemon']

    If a fruit doesn’t exist in the list add the fruit to the list and print the modified list. If the fruit exists print(‘That fruit already exists in the list’)

    Exercises: Level 3

  4. Here we have a person dictionary. Feel free to modify it!

        person={
    'first_name': 'Tech',
    'last_name': 'G',
    'age': 25,
    'country': 'India',
    'is_marred': True,
    'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
    'address': {
        'street': 'Space street',
        'zipcode': '110034'
    }
    }
 * Check if the person dictionary has skills key, if so print out the middle skill in the skills list.
 * Check if the person dictionary has skills key, if so check if the person has 'Python' skill and print out the result.
 * If a person skills has only JavaScript and React, print('He is a front end developer'), if the person skills has Node, Python, MongoDB, print('He is a backend developer'), if the person skills has React, Node and MongoDB, Print('He is a fullstack developer'), else print('unknown title') - for more accurate results more conditions can be nested!
 * If the person is married and if he lives in Finland, print the information in the following format:
    Tech G lives in India. He is married.

<< Day 8 | Day 10 >>

Tech G

View Comments

Recent Posts

Python in 30 Days: Day 30- Conclusions

Day 30 Conclusions In the process of preparing this material, I have learned quite a…

7 months ago

Python in 30 Days: Day 29 – Building an API

Day 29: Building API In this section, we will cover a RESTful API that uses HTTP…

7 months ago

Python in 30 Days: Day 28 – API

Day 28: Application Programming Interface (API) API API stands for Application Programming Interface. The kind…

7 months ago

Python in 30 Days: Day 27 – Python with MongoDB

Day 27: Python with MongoDB Python is a backend technology, and it can be connected…

7 months ago

Python in 30 Days: Day 26 – Python for web

Day 26: Python for Web Python is a general-purpose programming language, and it can be…

7 months ago

Python in 30 Days: Day 25 – Pandas

Day 25: Pandas Pandas is an open-source, high-performance, easy-to-use data structure, and data analysis tool…

7 months ago