So I have the following multidimensional list:
[['50 60 70 60'],
['100 90 87 90'],
['30 65 50 50'],
['58 50 74 43']]
Is there anyway I can convert the strings to a list of ints, such as:
[[50, 60, 70, 60],
[100, 90, 87, 90],
[30, 65, 50, 50],
[58, 50, 74, 43]]