Created
June 6, 2013 18:27
-
-
Save trakhov/5723755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> $A # у нас есть точка | |
<A = (1.64, 2.16)> | |
>>> $B # еще одна | |
<B = (4.16, 1.96)> | |
>>> List = [$A] # поместим одну из них в список | |
>>> List # проверим, там ли она: | |
[<A = (1.64, 2.16)>] | |
>>> $A in List | |
True # True, то есть, да | |
# А вот теперь загадка: | |
>>> $B in List | |
True # True??? Но там же его нет! | |
>>> List # WTF | |
[<A = (1.64, 2.16)>] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment