I have a list like this
list=['a, b, c, d', 'e, f, g, h','i, j, k, l']
But i want to have a list like below way
target_list=[
              ['a','b','c','d']
              ['e','f','g','h']
              ['i','j','k','l']
           ]
Please help me to solve this. I am new into python.
 
     
     
    