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 ================================ >>> Found it! >>> ================================ RESTART ================================ >>> >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep22-hangman-002.py", line 8, in findLetter("bob","z") File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep22-hangman-002.py", line 5, in findLetter if s[3]==lookFor: print("Found it!") IndexError: string index out of range >>> ================================ RESTART ================================ >>> >>> ================================ RESTART ================================ >>> Found it! >>> ================================ RESTART ================================ >>> Found it! Found it! >>> s = "hello"File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep22-hangman-002.py", line 5, in findLetter SyntaxError: invalid syntax >>> s = "hello" >>> s 'hello' >>> len(s) 5 >>> range(0,5) [0, 1, 2, 3, 4] >>> range(0,len(s)) [0, 1, 2, 3, 4] >>> ================================ RESTART ================================ >>> Found it at index 0 Found it at index 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'] >>> "hello".find("o") 4 >>> "hello".upper >>> "hello".upper() 'HELLO' >>> ================================ RESTART ================================ >>> Found it at index 0 Found it at index 2 >>> string.upper Traceback (most recent call last): File "", line 1, in string.upper NameError: name 'string' is not defined >>> range(0,10,2) [0, 2, 4, 6, 8] >>> range(0,10,3) [0, 3, 6, 9] >>> range(10,0,-1) [10, 9, 8, 7, 6, 5, 4, 3, 2, 1] >>> ================================ RESTART ================================ >>> >>> ================================ RESTART ================================ >>> :Jeff >>> ================================ RESTART ================================ >>> Jeff >>> ================================ RESTART ================================ >>> ('Jeff. Age:31', 'Jeff. Age:31') >>> ================================ RESTART ================================ >>> ('Jeff', 'eff. Age:31') >>> import string >>> string.letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\x83\x8a\x8c\x8e\x9a\x9c\x9e\x9f\xaa\xb5\xba\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff' >>> string.ascii_letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' >>> string.ascii_lowercase 'abcdefghijklmnopqrstuvwxyz' >>> s = "Name is :Jeff. Age:31" >>> s.find(":",12) 18 >>> s[18:] ':31' >>> ================================ RESTART ================================ >>> ('Jeff', ':31') >>> ================================ RESTART ================================ >>> ('Jeff', '31') >>> ================================ RESTART ================================ >>> ('Jeff', '31. Birthdate:July 1', 'Name is :Jeff. Age:31. Birthdate:July 1') >>> ================================ RESTART ================================ >>> ('Jeff', '31. Birthdate:July 1', 'Name is :Jeff. Age:31. Birthdate:July 1') >>> ================================ RESTART ================================ >>> ('Jeff', '31', 'Name is :Jeff. Age:31. Birthdate:July 1') >>> ================================ RESTART ================================ >>> ('Jeff', '31', 'July ') >>> ================================ RESTART ================================ >>> ('Jeff', '31', 'July 1') >>> ================================ RESTART ================================ >>> ('Jeff', '31', 'July 1') >>> for x in [1]: print(str(x)) 1 >>> ================================ RESTART ================================ >>> Found it. >>> ================================ RESTART ================================ >>> >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep22-strings-001.py", line 8, in findLetter('cat','z') File "C:/Documents and Settings/Administrator/Desktop/Jeff Stuff/sep22-strings-001.py", line 5, in findLetter if s[3]==lookFor: print("Found it.") IndexError: string index out of range >>> ================================ RESTART ================================ >>> >>> s = "hello" >>> s[:] 'hello' >>> ================================ RESTART ================================ >>> Found it. Found it. >>> ================================ RESTART ================================ >>> c a t i n t h Found it. e h Found it. a t >>> ================================ RESTART ================================ >>> Found it. >>> ================================ RESTART ================================ >>> Found it at index 8 >>> range(0,10) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> ================================ RESTART ================================ >>> Found it at index 8 Found it at index 11 >>> ================================ RESTART ================================ >>> Found it at index 8 >>> 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("e") 1 >>> "hello".find("z") -1 >>> ================================ RESTART ================================ >>> :Jeff. >>> ================================ RESTART ================================ >>> Jeff. >>> ================================ RESTART ================================ >>> Jeff >>> ================================ RESTART ================================ >>> Jeff >>> ================================ RESTART ================================ >>> Jeff >>> ================================ RESTART ================================ >>> ('Jeff. Age:55', 'Jeff. Age:55') >>> ================================ RESTART ================================ >>> ('Jeff', 'Jeff. Age:55') >>> "hello".find("e",2) -1 >>> ================================ RESTART ================================ >>> ('Jeff', '55') >>> ================================ RESTART ================================ >>> ('Jeff', '55. Birthday:Canada Day', 'Name is:Jeff. Age:55. Birthday:Canada Day') >>> ================================ RESTART ================================ >>> ('Jeff', '55', 'Canada Day') >>> ================================ RESTART ================================ >>> ('Jeff', '55', 'Canada Day') >>>