I have a list of lists:
a = [[1,2,\'a\',\'b\'],[3,4,\'c\',\'d\'],[5,6,\'e\',\'f\']]
and I want the result:
[[1,2],[3,4],[5,6]] and