I am working on a project where i want to use list comprehension for printing out a nested list like below
[['Jonathan', 'Adele', 'David', 'Fletcher', 'Steven',["A","B","C"]],['Nathan', 'Tom', 'Tim', 'Robin', 'Lindsey']]
This need to print every name as string. I am able to print it like below
['Jonathan',
'Adele',
'David',
'Fletcher',
'Steven',
['A', 'B', 'C'],
'Nathan',
'Tom',
'Tim',
'Robin',
'Lindsey']
However, i don't want A,B,C to be printed as a list. I need them in print like other names. How can i apply list comprehension here? Please help.