Please enable JavaScript to use CodeHS

CodeHS Glossary


Equivalence Python

When two objects have the same properties but are not the same object. For example:

first = [1, 2, 3]
second = [1, 2, 3]
first is second # this is false
first == second # true because they are equivalent