I am trying to convert the elements of a list of list of lowercase. This is what is looks like.
print(dataset) [[\'It\', \'went\', \'Through\', \'my\', \'shi
If you wish to convert all the Strings in your list in Python, you can simply use following code:
[w.lower() for w in My_List]
My_List is your list name
My_List