I have the following list
of strings:
data = ["1","0","1","<>","0","1","0","<>","1","0","1"]
What I'd like as a result is:
[[1, 0, 1], [0, 1, 0], [1, 0, 1]]
E.g. a list of lists where each list is delimited by <>
and the resultant strings converted to integers.