Say I have a nested list and each list inside has multiple strings like this:
list = [["apple", "banana", "orange"], ["mango", "watermelon", "grapes"],["pear", "melon","tomato"]]
I have been saving my list like this in a file but when I load it in again, it becomes one long string and thus accessing them is not as easy. I want to be able to save the code above as a nested list with strings inside and be able to load in the same thing without it being one long string.