Here is what i am trying to do.. I want the user to pick a number, and then print word from my list that the number indexes. This is what i have so far
mylist = ["john","jack","jen","judy","jill"]
mylist
add = input("please state a name")
mylist.append(add)
print (mylist)
add = input("please state a number")