I just want to know how python's (python 2.7) interpreter is find the type of variable. Like How python Dynamic Type Behaviour internally works.
MacBook-Pro:~ neelabhsingh$ python Python 2.7.12 (default, Jun 29 2016, 14:05:02) >>> type(i) <type 'int'> >>> type(str1) <type 'str'> >>> testFloat = 45.67 >>> type(testFloat) <type 'float'>