forked from trekhleb/learn-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_if.py
28 lines (20 loc) · 803 Bytes
/
test_if.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
"""IF statement
@see: https://docs.python.org/3/tutorial/controlflow.html
There can be zero or more elif parts, and the else part is optional. The keyword ‘elif’ is
short for ‘else if’, and is useful to avoid excessive indentation.
An if … elif … elif … sequence is a substitute for the switch or case statements found
in other languages.
"""
def test_if_statement():
"""IF statement"""
number = 15
conclusion = ''
if number < 0:
conclusion = 'Number is less than zero'
elif number == 0:
conclusion = 'Number equals to zero'
elif number < 1:
conclusion = 'Number is greater than zero but less than one'
else:
conclusion = 'Number bigger than or equal to one'
assert conclusion == 'Number bigger than or equal to one'