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. >>> ================================ RESTART ================================ >>> 1 >>> dir("") ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'dummy', 'y'] >>> ================================ RESTART ================================ >>> ['y'] 1 >>> ================================ RESTART ================================ >>> [] ['y'] 1 >>> ================================ RESTART ================================ >>> ['y'] ['y'] 1 >>> evenOddS("hello") Traceback (most recent call last): File "", line 1, in evenOddS("hello") NameError: name 'evenOddS' is not defined >>> "HeLlO" 'HeLlO' >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 100 Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 27, in higherLower answer = random.randint(0, int(maxVal)) TypeError: int() argument must be a string or a number, not 'NoneType' >>> x = None >>> x >>> print(x) None >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 100 Guess a number between 0 and 100: 50 Your guess is too high. Guess a number between 0 and 100: lkjasdf Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 31, in higherLower guess = float( raw_input("Guess a number between 0 and " + maxVal + ": ") ) ValueError: could not convert string to float: lkjasdf >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 Guess a number between 0 and 0: 0 Your guess is too high. Guess a number between 0 and 0: 0 Your guess is too high. Guess a number between 0 and 0: You typed bad, bad, bad. Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 31, in higherLower guess = getNumber("Guess a number between 0 and " + maxVal + ": ") File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 19, in getNumber print("You typed bad, bad, bad.") KeyboardInterrupt >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 31, in higherLower guess = getNumber("Guess a number between 0 and " + maxVal + ": ") TypeError: cannot concatenate 'str' and 'int' objects >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 Guess a number between 0 and 0: 0 You are correct. You get a star. The correct answer is 0 You got it right in 1 times. >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'dummy', 'getNumber', 'higherLower', 'random'] >>> [8, 5, 1, 3, 5] [8, 5, 1, 3, 5] >>> listOfGrades = [90, 80, 70, 60, 0] >>> listOfGrades [90, 80, 70, 60, 0] >>> listOfNames = ['Jeff', 'Devon', 'Andrew', 'William', 'Matthew'] >>> listOfNames ['Jeff', 'Devon', 'Andrew', 'William', 'Matthew'] >>> name = "John" >>> name[0] 'J' >>> name[1] 'o' >>> listOfNames[0] 'Jeff' >>> listOfNames[0:2] ['Jeff', 'Devon'] >>> listOfGrades[1:4] [80, 70, 60] >>> dir(listOfNames) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> listOfNames.append("Julie") >>> listOfNames ['Jeff', 'Devon', 'Andrew', 'William', 'Matthew', 'Julie'] >>> listOfNames.count('Jeff') 1 >>> listOfNames.count('jeff') 0 >>> listOfNames.index('Andrew') 2 >>> listOfNames.remove('Andrew') >>> listOfNames ['Jeff', 'Devon', 'William', 'Matthew', 'Julie'] >>> listOfNames.sort() >>> listOfNames ['Devon', 'Jeff', 'Julie', 'Matthew', 'William'] >>> listOfNames.pop() 'William' >>> listOfNames ['Devon', 'Jeff', 'Julie', 'Matthew'] >>> listOfNames.pop(0) 'Devon' >>> listOfNames ['Jeff', 'Julie', 'Matthew'] >>> dir(listOfNames) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 22, in hangMan() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-002-hangman.py", line 6, in hangMan answer = random.choice(listOfWords) NameError: global name 'random' is not defined >>> ================================ RESTART ================================ >>> >>> ================================ RESTART ================================ >>> cat >>> ================================ RESTART ================================ >>> tie >>> ================================ RESTART ================================ >>> bed ['_', '_', '_'] >>> dir("") ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>> "hello".find("h") 0 >>> "hello".find("z") -1 >>> ================================ RESTART ================================ >>> bed ['_', '_', '_'] Guess a letter: b Good job, you got one. >>> listOfNames Traceback (most recent call last): File "", line 1, in listOfNames NameError: name 'listOfNames' is not defined >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'dummy', 'getNumber', 'hangMan', 'higherLower', 'random'] >>> listOfNames = ['one', 'two'] >>> listOfNames ['one', 'two'] >>> listOfNames[0] = 'lkajsdflkjsdf' >>> listOfNames ['lkajsdflkjsdf', 'two'] >>> "bed".find("d") 2 >>> "bed".find("e") 1 >>> ================================ RESTART ================================ >>> cat ['_', '_', '_'] Guess a letter: a Good job, you got one. ['_', 'a', '_'] >>> ================================ RESTART ================================ >>> 2 >>> dir("") ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'dummy', 'y'] >>> ================================ RESTART ================================ >>> [] 2 >>> ================================ RESTART ================================ >>> [] ['y'] 2 >>> evenOddS("hello") Traceback (most recent call last): File "", line 1, in evenOddS("hello") NameError: name 'evenOddS' is not defined >>> "HeLlO" 'HeLlO' >>> "TeSt..." File "", line 1 "TeSt..." ^ IndentationError: unexpected indent >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? l;kasjdf;lkajsdf You typed bad, bad, bad. What is the max value you want to have to guess? 0 Guess a number between 0 and 0: jalksdfjlkjasdf Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 23, in higherLower guess = float( raw_input("Guess a number between 0 and " + maxVal + ": ") ) ValueError: could not convert string to float: jalksdfjlkjasdf >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 50 Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 23, in higherLower answer = random.randint(0, int(maxVal)) TypeError: int() argument must be a string or a number, not 'NoneType' >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 50 None Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 24, in higherLower answer = random.randint(0, int(maxVal)) TypeError: int() argument must be a string or a number, not 'NoneType' >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 50 Guess a number between 0 and 50: 25 Your guess is too high. Guess a number between 0 and 50: 12 Your guess is too high. Guess a number between 0 and 50: lkajsdflkjasdf Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 28, in higherLower guess = float( raw_input("Guess a number between 0 and " + maxVal + ": ") ) ValueError: could not convert string to float: lkajsdflkjasdf >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 What is the max value you want to have to guess? 0 Your guess is too high. What is the max value you want to have to guess? 0 Your guess is too high. What is the max value you want to have to guess? Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 28, in higherLower guess = getNumber("Guess a number between 0 and " + maxVal + ": ") File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 13, in getNumber maxVal = raw_input("What is the max value you want to have to guess? ") KeyboardInterrupt >>> higherLower() What is the max value you want to have to guess? 0 What is the max value you want to have to guess? You typed bad, bad, bad. What is the max value you want to have to guess? Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 28, in higherLower guess = getNumber("Guess a number between 0 and " + maxVal + ": ") File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 13, in getNumber maxVal = raw_input("What is the max value you want to have to guess? ") KeyboardInterrupt >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 What is the max value you want to have to guess? 100 Your guess is too high. What is the max value you want to have to guess? 0 Your guess is too high. What is the max value you want to have to guess? >>> ================================ RESTART ================================ >>> higher >>> higherLower() What is the max value you want to have to guess? 0 Guess a number between 0 and 0: 0 Your guess is too high. Guess a number between 0 and 0: -1 You typed bad, bad, bad. Guess a number between 0 and 0: .00001 You typed bad, bad, bad. Guess a number between 0 and 0: You typed bad, bad, bad. Guess a number between 0 and 0: Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 28, in higherLower guess = getNumber("Guess a number between 0 and " + maxVal + ": ") File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 13, in getNumber maxVal = raw_input(message) KeyboardInterrupt >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 Traceback (most recent call last): File "", line 1, in higherLower() File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep20-001-hangman.py", line 28, in higherLower guess = getNumber("Guess a number between 0 and " + maxVal + ": ") TypeError: cannot concatenate 'str' and 'int' objects >>> ================================ RESTART ================================ >>> >>> higherLower() What is the max value you want to have to guess? 0 Guess a number between 0 and 0: 0 You are correct. You get a star. The correct answer is 0 You got it right in 1 times. >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'dummy', 'getNumber', 'higherLower', 'random'] >>> numbers = [1, 6, 4, 3] >>> numbers [1, 6, 4, 3] >>> names = ['paula', 'bob', 'jeremiah'] >>> names ['paula', 'bob', 'jeremiah'] >>> stuff = [1, 2, 'no', 'yes'] >>> stuff [1, 2, 'no', 'yes'] >>> names[0] 'paula' >>> name = "john" >>> name[0] 'j' >>> names[0:1] ['paula'] >>> names[0:2] ['paula', 'bob'] >>> dir("") ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>> dir([]) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> names ['paula', 'bob', 'jeremiah'] >>> names.append('lkjasdf') >>> names ['paula', 'bob', 'jeremiah', 'lkjasdf'] >>> names[0] = 'susan' >>> names ['susan', 'bob', 'jeremiah', 'lkjasdf'] >>> name 'john' >>> name[0] = 't' Traceback (most recent call last): File "", line 1, in name[0] = 't' TypeError: 'str' object does not support item assignment >>> dir([]) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> names ['susan', 'bob', 'jeremiah', 'lkjasdf'] >>> names.count('bob') 1 >>> names.index('bob') 1 >>> names ['susan', 'bob', 'jeremiah', 'lkjasdf'] >>> names.index('susan') 0 >>> names.pop() 'lkjasdf' >>> names ['susan', 'bob', 'jeremiah'] >>> nextthing = names.pop() >>> name 'john' >>> names ['susan', 'bob'] >>> nextthing 'jeremiah' >>> dir([]) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> names.remove('jeff') Traceback (most recent call last): File "", line 1, in names.remove('jeff') ValueError: list.remove(x): x not in list >>> names ['susan', 'bob'] >>> names.sort() >>> names ['bob', 'susan'] >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'dummy', 'getNumber', 'higherLower', 'name', 'names', 'nextthing', 'numbers', 'random', 'stuff'] >>> stuff [1, 2, 'no', 'yes'] >>> stuff.sort() >>> stuff [1, 2, 'no', 'yes'] >>> ================================ RESTART ================================ >>> rat >>> ================================ RESTART ================================ >>> cat >>> dir("") ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>> answer = 'cat' >>> answer.find('t') 2 >>> answer.find('z') -1 >>>