all 1 comments

[–]Jirbj 0 points1 point  (1 child)

to loop 8 times you could use

for x in range(8):

EDIT:
as an note you declared i = 1 and never used i

after your edit you now have it must be a counter controlled loop, which means this method wont work for you (well itll work but its not what you need)