Skip to content

Instantly share code, notes, and snippets.

@trakhov
Created June 6, 2013 18:27
Show Gist options
  • Save trakhov/5723755 to your computer and use it in GitHub Desktop.
Save trakhov/5723755 to your computer and use it in GitHub Desktop.
>>> $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