Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AM
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 1==1.0
True
>>> a=1
>>> b=a
>>> c=1
>>> d=1.0
>>>
>>> id(a)
1719534032
>>> id(b)
1719534032
>>> id(c)
1719534032
>>> id(d)
1679888
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 1==1.0
True
>>> a=1
>>> b=a
>>> c=1
>>> d=1.0
>>>
>>> id(a)
1719534032
>>> id(b)
1719534032
>>> id(c)
1719534032
>>> id(d)
1679888