diff options
author | sarthfrey <sarth.frey@gmail.com> | 2016-01-25 18:26:23 -0500 |
---|---|---|
committer | sarthfrey <sarth.frey@gmail.com> | 2016-01-25 18:26:23 -0500 |
commit | 279c28ce7dcc3f155f71c7a073e939630e8f05b6 (patch) | |
tree | cd06525da5a4350916143f025b2e5a64a56922aa /python3.html.markdown | |
parent | 299d064ecf7598144e49ef336e0abd00ccc4ae16 (diff) | |
parent | 928edf12092cea82a9eded6848b8d0b0710a977c (diff) |
Merge remote-tracking branch 'adambard/master'
# Conflicts:
# python.html.markdown
Diffstat (limited to 'python3.html.markdown')
-rw-r--r-- | python3.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index f8c22047..ff531b17 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -97,13 +97,13 @@ False or True # => True 1 < 2 < 3 # => True 2 < 3 < 2 # => False -# (is vs. ==) is checks if two variable refer to the same object, but == checks +# (is vs. ==) is checks if two variables refer to the same object, but == checks # if the objects pointed to have the same values. a = [1, 2, 3, 4] # Point a at a new list, [1, 2, 3, 4] b = a # Point b at what a is pointing to b is a # => True, a and b refer to the same object b == a # => True, a's and b's objects are equal -b = [1, 2, 3, 4] # Point a at a new list, [1, 2, 3, 4] +b = [1, 2, 3, 4] # Point b at a new list, [1, 2, 3, 4] b is a # => False, a and b do not refer to the same object b == a # => True, a's and b's objects are equal |