I wanna store in a list all user inputs collected over time. I did something like this:
reactions = []
reaction = raw_input("I wanna know your reaction, yo: ")
reactions.append(reaction)
but even after refreshing, my code looks exactly the same, an empty list.