I have a list of lists and inside the lists are strings of multiple numbers. For example,
[['34,53,53,21'], ['43,65,12,53'], ['54,23,31,34']]
and I want the result to look like:
[[34,53,53,21], [43,65,12,53], [54,23,31,34]]
with all integers inside. I've tried numerous code, but keep getting different error messages.
Also, what about if some of the interior numbers were a float? Such as:
[['34,53.09,53.56,21.98'], ['43,65.67,12.45,53.45'], ['54,23.34,31.23,34.76']]