FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
learn-python/src/operators/test_identity.py at master · sotojcr/learn-python · GitHub
sotojcr
/
learn-python
Public
forked from
marciosaraiva/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_identity.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (25 loc) · 1.14 KB
Breadcrumbs
learn-python
/
src
/
operators
/
test_identity.py
Copy path
File metadata and controls
35 lines (25 loc) · 1.14 KB
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
29
30
31
32
33
34
35
"""Identity operators
@see: https://www.w3schools.com/python/python_operators.asp
Identity operators are used to compare the objects, not if they are equal, but if they are actually
the same object, with the same memory location.
"""
def
test_identity_operators
():
"""Identity operators"""
# Let's illustrate identity operators based on the following lists.
first_fruits_list
=
[
"apple"
,
"banana"
]
second_fruits_list
=
[
"apple"
,
"banana"
]
third_fruits_list
=
first_fruits_list
# is
# Returns true if both variables are the same object.
# Example:
# first_fruits_list and third_fruits_list are the same objects.
assert
first_fruits_list
is
third_fruits_list
# is not
# Returns true if both variables are not the same object.
# Example:
# first_fruits_list and second_fruits_list are not the same objects, even if they have
# the same content
assert
first_fruits_list
is
not
second_fruits_list
# To demonstrate the difference between "is" and "==": this comparison returns True because
# first_fruits_list is equal to second_fruits_list.
assert
first_fruits_list
==
second_fruits_list
Back
|
FazBrowse Home
|
New Git URL