For each list below, write a list comprehension that produces the list. [[1], [1,2], [1,2,3], [1,2,3,4], [1,2,3,4,5], [1,2,3,4,5,6], [1,2,3,4,5,6,7], [1,2,3,4,5,6,7,8]] [[2], [2,4], [2,4,6], [2,4,6,8], [2,4,6,8,10], [2,4,6,8,10,12], [2,4,6,8,10,12,14]] [[0,0], [0,0,0,0], [0,0,0,0,0,0], [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0]] [(1,[1]), (2,[1,2]), (3,[1,2,3]), (4,[1,2,3,4]), (5,[1,2,3,4,5]), (6,[1,2,3,4,5,6])] [[1], [1,4], [1,4,9], [1,4,9,16], [1,4,9,16,25], [1,4,9,16,25,36], [1,4,9,16,25,36,49]] [(1,[1]), (2,[1,4]), (3,[1,4,9]), (4,[1,4,9,16]), (5,[1,4,9,16,25]), (6,[1,4,9,16,25,36])] [[1], [1,2,1], [1,2,3,2,1], [1,2,3,4,3,2,1], [1,2,3,4,5,4,3,2,1], [1,2,3,4,5,6,5,4,3,2,1]]