I have created a list ->
a = [[1,2,3],[4,5,6],[7,8,9]]
1) How do I get the count of number of sub-lists in a? Like in this case it is 3
2) I am using iterator tool chain for traversing this list
for elt in itertools.chain.from_iterable(node):
Is there any way to know if I have traversed a sub list ?