I want to convert series of numbers in to arrays in Python without using any libraries. ( 0,2 3,0 4,5 7,8 8,6 9,5 13,6 15,9 17,10 21,8) (1,3 3,4 5,9 7,5 10,2 11,4 20,10 ) (0,0 6,6 12,3 19,6 (green)) for example these three series. Is it possible to do it without libraries like numpy? I tried to use numpy but and reached the solution like this for the first series.
array([[ 0, 2],
[ 3, 0],
[ 4, 5],
[ 7, 8],
[ 8, 6],
[ 9, 5],
[13, 6],
[15, 9],
[17, 10],
[21, 8]])
but the professor did not accept that.
string...generator...or what?string?