I have an array that looks like this
training_set = [['03/11/2017' '16,94']
['01/11/2017' '16,90']
['31/10/2017' '16,77']
...
However, I can not manipulate the numbers because they are in the form of string . How do I clean the data and leave it like this
training_set = [['03/11/2017' 16,94]
['01/11/2017' 16,90]
['31/10/2017' 16,77]