How do I get the items from the "list" shown below to look like the "new_list" which has the same amount of items in each list
list  = [1,0,1,1,1,0,1,0,          new_list = [[1,0,1,1,1,0,1,0],
         0,0,0,1,1,0,0,0,                      [0,0,0,1,1,0,0,0],
         1,1,1,0,0,1,0,0,                      [1,1,1,0,0,1,0,0],
         0,0,0,0,0,1,1,1]              `       [0,0,0,0,0,1,1,1]]
 
    