I want the list items to be separated into their own strings. It would be something like this.
list = ['a', 'b', 'c']
---------?---------
string1 = 'a'
string2 = 'b'
string3 = 'c'
I want the list items to be separated into their own strings. It would be something like this.
list = ['a', 'b', 'c']
---------?---------
string1 = 'a'
string2 = 'b'
string3 = 'c'
If you have fixed number of variables you may try this:
[string1, string2, string3] = ['1', '2', '3']