I have the following dictionary:
{
'0':'test1'
'1':'test2'
'2':'test3'
'3':'test4'
}
I want to convert it into an array in which the keys, as you can notice, are the indexes, and the key values are the values.
So, basically, I want ['test1', 'test2', 'test3', 'test4']
.
There is another question like this, which I read, but it doesn't solve my question, since I want the keys of the dictionary as indices.