[Tutor] Need some clarification on this

Joel Goldstick joel.goldstick at gmail.com
Sat Mar 19 16:01:17 CET 2011


2011/3/19 Yaşar Arabacı <yasar11732 at gmail.com>

> >>>a=5
> >>>b=5
> >>>a == b
> True
> >>>a is b
> True
>
> My question is, why "a is b" is true. What I expected it to be is that, a
> and b are different things with same value.
>
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> To unsubscribe or change subscription options:
> http://mail.python.org/mailman/listinfo/tutor
>

Oops.  I misread your post.  I (why I don't know) thought I saw a = 5, b =
4.

a and b are names.  Python has an integer of 5 from a = 5, so it just refers
to that same object with b.



-- 
Joel Goldstick
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20110319/98d589b5/attachment.html>


More information about the Tutor mailing list