I have the following list:
[['a:/, b:/, w:/, g:/, f:/, d:/Downloads/Torrent/End, x:/files.2t, y:/files.1t'], ['d:/Dropbox/project/rato_bat'], ['data']]
But I wanted it to be a list inside another list because I did this:
for a in lldir:
for b in a:
b = b.split(', ')
Would it be possible to do this in a row and assign it to a variable?