Python 3.5.2+ (default, Sep 22 2016, 12:18:14) [GCC 6.2.0 20160927] on linux Type "copyright", "credits" or "license()" for more information. >>> 0b1100111 103 >>> 2 ** 64 18446744073709551616 >>> 2 ** 600 4149515568880992958512407863691161151012446232242436899995657329690652811412908146399707048947103794288197886611300789182395151075411775307886874834113963687061181803401509523685376 >>> -200 -200 >>> 23.456 23.456 >>> "hello" 'hello' >>> ord('h') # Find the numeric code for 'h' 104 >>>