FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
learn-python/src/operators/test_logical.py at master · wenyilu00007/learn-python · GitHub
wenyilu00007
/
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
/
operators
/
test_logical.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (20 loc) · 737 Bytes
Breadcrumbs
learn-python
/
src
/
operators
/
test_logical.py
Copy path
File metadata and controls
28 lines (20 loc) · 737 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
"""Logical operators
@see: https://www.w3schools.com/python/python_operators.asp
Logical operators are used to combine conditional statements.
"""
def
test_logical_operators
():
"""Logical operators"""
# Let's work with these number to illustrate logic operators.
first_number
=
5
second_number
=
10
# and
# Returns True if both statements are true.
assert
first_number
>
0
and
second_number
<
20
# or
# Returns True if one of the statements is true
assert
first_number
>
5
or
second_number
<
20
# not
# Reverse the result, returns False if the result is true.
# pylint: disable=unneeded-not
assert
not
first_number
==
second_number
assert
first_number
!=
second_number
Back
|
FazBrowse Home
|
New Git URL