-
Notifications
You must be signed in to change notification settings - Fork 4
/
if_else_examples.py
57 lines (41 loc) · 1.14 KB
/
if_else_examples.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 30 03:16:37 2021
@author: mjach
"""
'''if - else - elif examples'''
#if examples
number = 7
# if number > 5:
# print('We are learning python basic')
'''How to use not operator with if'''
# either True or False- if th eexpression if is false then it will run
# if not number > 11:
# print('We are learning python basic')
'''How to use nested if '''
def find_out_about_number(number):
if number > 7:
print('Number is greater than 7')
if number < 10:
print('Number is less than 10')
# calling the function
#find_out_about_number(8)
# else examples
def find_out_about_number(number):
if number > 7:
print('Number is greater than 7')
else:
print('Check your number again!!')
# calling the function
#find_out_about_number(3)
#find_out_about_number(8)
#elif - else if examples
def find_out_about_number(num):
if num > 10:
print('Number is greater than 10')
elif num < 15:
print('Number is less than 15')
else:
print('Check your number please!!')
# calling the function
find_out_about_number()