test_list = ['a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9', 'a10',
'a11', 'a12', 'a13', 'a14', 'a15', 'a16', 'a17', 'a18']
my_result = {'list_a': ['a1', 'a4', 'a7', 'a10', 'a13', 'a16'],
'list_b': ['a2', 'a5', 'a8', 'a11', 'a14', 'a17'],
'list_c': ['a3', 'a6', 'a9', 'a12', 'a15', 'a18']}
here is a example of test_list and my_result. i want to create multiple lists from a list taking every nth item using for loop in python. I tried but failed. Can anyone help me solving this probem? thanks in advance.