If I have a list formed by the command dic.keys()
like this:
[
"['my', 'modem']", "['technical', 'schematics']", "['still', 'glad']",
"['spent', 'calling']", "['most', 'feared']", "['the', 'sysop']",
"['s', 'mystique']", "['had', 'been']", "['of', 'doom']",
"['i', 'hooked']", "['in', 'california']", "['my', 'ego']",
"['until', 'my']", "['didn', 't']"
]
The keys are formed by str()
,so it looks like list, but is a string.
My question is, how can you separate each item to make it look like this?
[ 'my', 'modem', 'techenical', ... ]