I've got the below code, with the aim to run through a list of defined variables and update them.
a = 1
b = 2
c = 3
test_list = [a, b, c]
print(test_list)
for i in test_list:
i = 4
print(test_list)
When I run this though the test_list
variables don't change. Any ideas what I'm doing wrong?