Python 2.5.2 (r252:60911, Feb 22 2008, 07:57:53) [GCC 4.0.1 (Apple Computer, Inc. build 5363)] Type "help", "copyright", "credits" or "license" for more information. >>> Evaluating function.py 169 >>> &wkjehr Traceback (most recent call last): File "", line 1, in invalid syntax: , line 1, pos 1 >>> 7 7 >>> type(7) >>> 34.64 34.640000000000001 >>> type(34.64) >>> x=7 >>> type(x) >>> type("Hello World") >>> float(4) 4.0 >>> int(7.0_ ... >>> int(7.0) 7 >>> int(7.99999999999999) 7 >>>