Answers for "2d array of strings and ints python"

-1

2d array of strings and ints python

In [24]: l =  [['1', ' 1', ' 3'], ['2', ' 3', ' 5'], ['3'], ['4', ' 5'], ['5', ' 1'], ['6', ' 6'], ['7']]

In [25]: result = [map(int,i) for i in l]
Posted by: Guest on April-23-2021

Code answers related to "2d array of strings and ints python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language