# note: this is not exactly what we did in class, but I tried to recreate it # afterwards - let me know if you have suggestions/questions cilantro[~]$ cilantro[~]$ cilantro[~]$ python3 Python 3.5.2 (default, Nov 17 2016, 17:05:23) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more information. >>> >>> >>> hello Traceback (most recent call last): File "", line 1, in NameError: name 'hello' is not defined >>> >>> x = 3 >>> >>> 7 7 >>> 2.5 2.5 >>> >>> x = 3 >>> y = 5 >>> >>> x+y 8 >>> z = x+y >>> z 8 >>> "hello" 'hello' >>> 'hello' 'hello' >>> >>> >>> greeting = "hello" >>> >>> type(x) >>> type(greeting) >>> >>> >>> w = 7.5 >>> type(w) >>> >>> w = 10 >>> type(w) >>> >>> >>> row = "EFFEEEFFEE" >>> >>> input("what is your row solution?") what is your row solution?EFFEEFFEF 'EFFEEFFEF' >>> >>> input("what month is it? ") what month is it? September 'September' >>> >>> input("what day is it? ") what day is it? 6 '6' >>> >>> day = input("what day is it? ") what day is it? 6 >>> >>> day '6' >>> type(day) >>> >>> int(day) 6 >>> >>> >>> exit() cilantro[~]$