I have array such as [['C'],['F','D'],['B']]
Now I want to use functino for each items in multiple array.
The result I want is like this [[myfunc('C')],[myfunc('F'),myfunc('D')],[myfunc('B')]]
At first I tried like this. However, it did not give me the output I was expecting:
[myfunc(k) for k in [i for i in chordsFromGetSet]]
What is the best solution for this goal?