I came across this problem in my project in which I have lists which append from a life to a list. Please see below.
Log_info = [ "['[email protected]', 'carl120', 'Carl']", "['[email protected]', 'brandih0t', 'Brandi']" ]
Above is the list that have been pull from a file (TXT)
Below is what I want it to look like: I want to remove ""
so they are sub list in a list, but I can't seem to find how.
Log_info = [ ['[email protected]', 'carl120', 'Carl'], ['[email protected]', 'brandih0t', 'Brandi'] ]