- Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathtest_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.
"""
deftest_if_statement():
"""IF statement"""
number=15
conclusion=''
ifnumber<0:
conclusion='Number is less than zero'
elifnumber==0:
conclusion='Number equals to zero'
elifnumber<1:
conclusion='Number is greater than zero but less than one'
else:
conclusion='Number bigger than or equal to one'
assertconclusion=='Number bigger than or equal to one'