FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
learn-python/src/control_flow/test_if.py at master · kushalre/learn-python · GitHub
kushalre
/
learn-python
Public
forked from
trekhleb/learn-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
learn-python
/
src
/
control_flow
/
test_if.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (20 loc) · 803 Bytes
Breadcrumbs
learn-python
/
src
/
control_flow
/
test_if.py
Copy path
File metadata and controls
28 lines (20 loc) · 803 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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'
Back
|
FazBrowse Home
|
New Git URL