You can try this for more coord as you say you have 604 coords:
test=((-1.0, 1.0, 0.0),(-1.0, 1.0, 0.0),
(-1.0, -1.0, 0.0),(-1.0, -1.0, 0.0),
(1.0, -1.0, 0.0),(1.0, -1.0, 0.0),
(1.0, 1.0, 0.0),(1.0, 1.0, 0.0))
coors = map(lambda x: f'Coords {x}', range(len(test)))
res = zip(coors, test)
print(*(map(lambda x: f'{x[0]} = {x[1]}', res)), sep = '\n')
Output:
Coords 0 = (-1.0, 1.0, 0.0)
Coords 1 = (-1.0, 1.0, 0.0)
Coords 2 = (-1.0, -1.0, 0.0)
Coords 3 = (-1.0, -1.0, 0.0)
Coords 4 = (1.0, -1.0, 0.0)
Coords 5 = (1.0, -1.0, 0.0)
Coords 6 = (1.0, 1.0, 0.0)
Coords 7 = (1.0, 1.0, 0.0)
Edit base comments:
test=((-1.0, 1.0, 0.0),(-1.0, 1.0, 0.0),
(-1.0, -1.0, 0.0),(-1.0, -1.0, 0.0),
(1.0, -1.0, 0.0),(1.0, -1.0, 0.0),
(1.0, 1.0, 0.0),(1.0, 1.0, 0.0))
coors = list(map(lambda x: f'Coords_{x}', range(len(test))))
for i in range(len(coors)):
globals()[coors[i]] = test[i]
print(Coords_0)
print(Coords_5)
Output:
(-1.0, 1.0, 0.0)
(1.0, -1.0, 0.0)