list_val = '["apple", "blue", "green", "orange", "cherry", "white", "red", "violet"]'
print type(list_var)
str
print type(list_var[0])
'['
I read list_val values from a file and how to convert list_var to list ? so that list_var [0] should be 'apple'.