Converting string with characters into arraylist with strings
in
Programming Questions
•
6 months ago
Hi, I have a string with characters that looks like this:
my_string = "011001" ;
how can i convert this into a list with strings in order to have as result this?
my_array_list = [0, 1, 1, 0, 0, 1];
T.
1