File: class/Extras/Other/PriorClasses/t2-vancouver-oct15/first-session.py
Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> 2 ** 100 1267650600228229401496703205376L >>> 2 ** 1000 1071508607186267320948425049060001810561404811705533607443750388370351051124936122493198378815695858 1275946729175531468251871452856923140435984577574698574803934567774824230985421074605062371141877954 1821530464749835819412673987675591655439460770629145711964776865421676604298316526243868372056680693 76L >>> >>> 'SPAM' * 8 'SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAM' >>> >>> import os >>> os.getcwd() 'C:\\Python27' >>>