Just a quick question.
Suppose, I have a simple for-loop like
for i in range(1,11):
x = raw_input()
and I want to store all the values of x that I will be getting throughout the loop in different variables such that I can use all these different variables later on when the loop is over.