Additionally onto my other post. If I have a list of coordinates, how can I assign them to variables and keep appending and assigning:
positions = [(1,1), (2,4), (6,7)]
index = 0
for looper in range(0, len(positions)):
posindex = positions[index]
index = index + 1
Where posindex is pos0, then pos1, then pos2 and increases with the variable index, which will give me the index in the list as well. Python gives me this:
"'posindex' is undefined"
Anyway to put a variable into another one? Any other problems I may run into?