- Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathtest_logical.py
28 lines (20 loc) · 737 Bytes
/
test_logical.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
"""Logical operators
@see: https://www.w3schools.com/python/python_operators.asp
Logical operators are used to combine conditional statements.
"""
deftest_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.
assertfirst_number>0andsecond_number<20
# or
# Returns True if one of the statements is true
assertfirst_number>5orsecond_number<20
# not
# Reverse the result, returns False if the result is true.
# pylint: disable=unneeded-not
assertnotfirst_number==second_number
assertfirst_number!=second_number