How do I create a loop in which I will create variables with name having the 'i' value at the end of variable's name? So far I have this but it is not working:
for i in range(0,4):
#v{i} should be v1, v2, v3, v4 at the end of loop with values being the 'i' value respectively
v{i} = i
i+=1
Thank you