Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> 1+1 2 >>> 1+1 2 >>> 436484862 % 98773 6975 >>> =============================== RESTART: Shell =============================== >>> print("hi") hi >>> 2-a Traceback (most recent call last): File "", line 1, in 2-a NameError: name 'a' is not defined >>> 1 > 1 False >>> 1 > -1 True >>> 1 > 2 False >>> 7/3 2.3333333333333335 >>> 7//3 2 >>> 1 == 2 False >>> 7//3 == 1 + 1 True >>> 4-3 1 >>> 4/3 1.3333333333333333 >>> 4//3 1 >>> 7*2 14 >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> 14 14 >>> >>> >>> 14 % 3 2 >>> 3**2 9 >>> 3**10 59049 >>> 3**32 1853020188851841 >>> 3**200 265613988875874769338781322035779626829233452653394495974574961739092490901302182994384699044001 >>> 3**2000 1747871251722651609659974619164660570529062487435188517811888011810686266227275489291486469864681111075608950696145276588771368435875508647514414202093638481872912380089977179381529628478320523519319142681504424059410890214500500647813935818925701905402605484098137956979368551025825239411318643997916523677044769662628646406540335627975329619264245079750470862462474091105444437355302146151475348090755330153269067933091699479889089824650841795567478606396975664557143737657027080403239977757865296846740093712377915770536094223688049108023244139183027962484411078464439516845227961935221269814753416782576455507316073751985374046064592546796043150737808314501684679758056905948759246368644416151863138085276603595816410945157599742077617618911601185155602080771746785959359879490191933389965271275403127925432247963269675912646103156343954375442792688936047041533537523137941310690833949767764290081333900380310406154723157882112449991673819054110440001 >>> 3**4404389348348 =============================== RESTART: Shell =============================== >>> >>> >>> a = 10 >>> b = 5 >>> a*b 50 >>> a/b 2.0 >>>