So I have a list in the following format:
list_1 = ['a,b,c','1,2,3','e,f,g']
which I made into sublists using
list_1 = [list_1[i:i+1] for i in range(0, len(list_1), 1)]
that output of that is
list_1 = [['a,b,c'],['1,2,3'],['e,f,g']]
but I would like to get it into this format:
list_1 = [['a','b','c'],['1','2','3'],['e','f','g']]
how would this be possible?