Print (S [::-1])

l = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
for x in l:
  print(S[::2], [1::2])
Wide-eyed Weevil