So if you had:
abspirlist = [['name', 'att', 'def', 1],
['name', 'att', 'def', 1],
['name', 'att', 'def', 1]]
You want the number 12, for the total number of nested elements?
You can do that with a little fancy work, by generating a list of lengths (in this case: [4, 4, 4]).
Then feeding it to the sum function (sum([4,4,4]) evaluates 12).
Combining these two ideas gives us:
sum((len(x) for x in abspirlist))