How do you make from a list a file and then back to a list?

i have a list that i transformed into a file but if i want to transform it back to a list i get 1 list item with ["example", "example"] and i want it back to a normal list (and so easy as possible)

...what kind of file? CSV, JSON, txt?

If this is a CSV formatted list, like:

San Diego, Washington DC, Seattle

then you can use:

image

or, if it is a JSON list, like:

["San Diego", "Washington DC", "Seattle"]

then, you can use:

image

1 Like

idk i just used the "file" options

yeah i used the JSON thing and it worked (: , i tried it before but i used the "make a list" before the call web1 .Jsondecode and that didn't work but thank you for helping

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.