Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> print 4 4 >>> type(Hello, World) Traceback (most recent call last): File "", line 1, in type(Hello, World) NameError: name 'Hello' is not defined >>> type('Hello, World') >>> print 5 5 >>> x = 10 >>> x 10 >>> y = x + 2 >>> y 12 >>> ================================ RESTART ================================ >>> >>> y = 10 * 3 >>> y 30 >>> x = y - 4 >>> x 26 >>> z = x / 5 >>> z 5 >>> z = x / 5.0 >>> z 5.2 >>> 26 % 5 1 >>> x = "Hello" >>> x 'Hello' >>> y = "25" >>> y '25' >>> y * 2 '2525' >>> y - 2 Traceback (most recent call last): File "", line 1, in y - 2 TypeError: unsupported operand type(s) for -: 'str' and 'int' >>> y + y '2525' >>> y + y + y '252525' >>> y = "hello" >>> y = y + y >>> y 'hellohello' >>> y = y + y >>> y 'hellohellohellohello' >>> y = y + y >>> y 'hellohellohellohellohellohellohellohello' >>> y = "hello " + "hello" >>> y 'hello hello' >>> z = 'hello' >>> z = 'hello" SyntaxError: EOL while scanning string literal >>> message = "Jeff said, "Because I said so."" SyntaxError: invalid syntax >>> message = 'Jeff said, "Because I said so."' >>> message 'Jeff said, "Because I said so."' >>> y = int("10.0") Traceback (most recent call last): File "", line 1, in y = int("10.0") ValueError: invalid literal for int() with base 10: '10.0' >>> y = float("10.0") >>> y 10.0 >>> x = int("10") >>> x 10 >>> y = str(10) >>> y '10' >>> print(Hello) Traceback (most recent call last): File "", line 1, in print(Hello) NameError: name 'Hello' is not defined >>> print("Hello") Hello >>> print("Hello" + "World") HelloWorld >>> y '10' >>> print(y) 10 >>> ================================ RESTART ================================ >>> My name is 42 My major is My previous programming experience is One thing I am looking forward to in this course is The operating system I use most is The number of hours per week I plan to spend on this course is The grade I hope to get in this course is at least What goes under the 1st shell? 1 What goes under the 2nd shell? 2 What goes under the 3rd shell? 3 Under the 1st shell is 1 Under the 2nd shell is 2 Under the 3rd shell is 3 I switched the 2nd and third ones. Now, under the shells, we have: 1, 3, 2 Now the 1st and 2nd ones should have been switched (if you filled in the code like you should have). Now, under the shells, we have: 1, 3, 2 You are going to give me two fractions. Enter the numerator of the first fraction: 1 Enter the denominator of the first fraction: 2 Enter the numerator of the second fraction: 1 Enter the denominator of the second fraction: 2 Which do you think is bigger (enter 1 for the first one, or 2 for the second one)? 1 The first fraction is 0.5. You were correct! >>> x = raw_input("Type something: ") Type something: something >>> x 'something' >>> x = input("Type something: ") Type something: something Traceback (most recent call last): File "", line 1, in x = input("Type something: ") File "", line 1, in NameError: name 'something' is not defined >>> grade1 = raw_input("Give me your grade1: ") Give me your grade1: 100 >>> grade1 '100' >>> grade2 = raw_input("Give me your second grade: ") Give me your second grade: 90 >>> grade2 '90' >>> (grade1 + grade2)/2 Traceback (most recent call last): File "", line 1, in (grade1 + grade2)/2 TypeError: unsupported operand type(s) for /: 'str' and 'int' >>> grade1+grade2 '10090' >>> (float(grade1) + float(grade2))/2 95.0 >>> avg = (float(grade1) + float(grade2))/2 >>> avg 95.0 >>> print("Your average is " + avg) Traceback (most recent call last): File "", line 1, in print("Your average is " + avg) TypeError: cannot concatenate 'str' and 'float' objects >>> print("Your average is " + str(avg)) Your average is 95.0 >>> ================================ RESTART ================================ >>> What Is your First Grade 22 What is you second Grade 96 Your average is 59.0 >>> shell2 = "2" >>> shell3 = "3" >>> shell2 = shell3 >>> shell3 = shell2 >>> shell2 '3' >>> shell3 '3' >>> ================================ RESTART ================================ >>> My name is 42 My major is My previous programming experience is One thing I am looking forward to in this course is The operating system I use most is The number of hours per week I plan to spend on this course is The grade I hope to get in this course is at least What goes under the 1st shell? 1 What goes under the 2nd shell? 2 What goes under the 3rd shell? 3 Under the 1st shell is 1 Under the 2nd shell is 2 Under the 3rd shell is 3 I switched the 2nd and third ones. Now, under the shells, we have: 1, 3, 2 Now the 1st and 2nd ones should have been switched (if you filled in the code like you should have). Now, under the shells, we have: 1, 3, 2 You are going to give me two fractions. Enter the numerator of the first fraction: 1 Enter the denominator of the first fraction: 2 Enter the numerator of the second fraction: 3 Enter the denominator of the second fraction: 1 Which do you think is bigger (enter 1 for the first one, or 2 for the second one)? 1 The first fraction is 0.5. You were correct! >>>