dics = []
The following shows the values in the list of dics:
["['Definition.", "', 'Exceptions.", "', 'Compelled Disclosure."]
But, what I am wondering is how I can remove the unnecessary values from the list such as:
['
for Definition.', '
for Exceptions.','
for Compelled Disclosure. I'd like to define the list to be like this:
["Definition.", "Exceptions.", "Compelled Disclosure."]
without unnecessary data. It would be really appreciated if you can help with any. Thanks.