Nov-28-2017, 09:46 PM
i put all the lists on top and the error still occurs.I am using python3.6.3 on windows 10.
sometimes i get this error sometimes not when i run this code over and over.
sometimes i get this error sometimes not when i run this code over and over.
Error:Traceback (most recent call last):
File "C:\Users\barbara\AppData\Local\Programs\Python\Python36-32\if_ranner.py", line 39, in <module>
print (people[morn] + ' ' + actions[morn] + ' ' + thesethings[morn] + ' ' + timely[morn])
IndexError: tuple index out of range
here is my python codeimport random print ("returns random element from list [10, 20, 30, 40, 50]) : ", random.choice([10, 20, 30, 40, 50])) print ("returns random character from string 'Hello World' : ", random.choice('Hello World')) b = ["sam went to the store", "bob visited jill", "billy went hunting"] print(random.choice(b)) nouns = ("alien", "man", "android", "girl", "monkey") verbs = ("runs", "faints", "jumps", "trips", "barfs") adv = ("crazily.", "dutifully.", "foolishly.", "merrily.", "occasionally.") adj = ("adorable", "clueless", "ignorant", "odd", "stupid") nons = ("alien", "man", "android", "girl", "monkey") vorbs = ("hunts", "walks", "jumps", "trips", "shoots gun") aev = ("slowly.", "carefully.", "fast.", "actiously.", "occasionally.") ado = ("adorable", "clueless", "ignorant", "odd", "stupid") humanoid = ("alien", "man", "android", "girl", "monkey") done = ("hunts", "walks with", "pushes", "trips", "shoots at","traps") living = ("a alien", "a man", "a girl", "a android", "a monkey") things = ("in a pit.", "in a tunnel.", "upstairs.", "downstairs.", "in the water.") bipeds = ("alien", "man", "android", "girl", "monkey") sports = ("goes golfing", "goes swimming", "goes skiing", "goes bowling", "goes surfing","goes hoverboarding") gowith = ("with a alien", "with a dog", "with a girl", "with a android", "with a robot") time = ("in the morning.", "at lunch time.", "in the afternoon.", "at night time.") people = ("girl", "woman", "man", "robot") actions = ("sees", "yells at", "films", "talks to") thesethings = ("scary alien", "a deer", "the stormy sky", "women standing in the rain") timely = ("in the morning.", "at lunch time.", "in the afternoon.", "at night time.") nem = random.randrange(0,5) print (nouns[nem] + ' ' + verbs[nem] + ' ' + adv[nem] + ' ' + adj[nem]) cob = random.randrange(0,5) print (nons[cob] + ' ' + vorbs[cob] + ' ' + aev[cob] + ' ' + ado[cob]) nob = random.randrange(0,5) print (humanoid[nob] + ' ' + done[nob] + ' ' + living[nob] + ' ' + things[nob]) mon = random.randrange(0,5) print (bipeds[mon] + ' ' + sports[mon] + ' ' + gowith[mon] + ' ' + time[mon]) morn = random.randrange(0,5) print (people[morn] + ' ' + actions[morn] + ' ' + thesethings[morn] + ' ' + timely[morn])
