Can you use a variable value as part of another variable name in Python.
For example, lets assume that I have a few variables named a1, a2, a3
Then can I access the variable using the value of another variable, lets say b = 2, therefore can I access a2 Something like (this is wrong but helps to explain)
a1 = "First"
a2 = "Second"
a3 = "Third"
b = 2
print(a%s,b)
This should print variable a2.
Thanks