I have this:
"1,2,3,4,5,6,7,8,9,0"
And need this:
[1,2,3,4,5,6,7,8,9,0]
Everything I search for has the example where the string is a list of strings like this:
"'1','2','3'..."
those solutions do not work for the conversion I need.
What do I need to do? I need the easiest solution to understand for a beginner.