It's possible to replace every specific value in a list of lists with the value from another list? Number of columns will be the same.
For this example, every single '1' will be replaced.
List1 = [[1,0,0,1,0] , [0,1,0,0,1]]
List2 = [4,6,8,17,19]
FinalList = [[4,0,0,17,0] , [0,6,0,0,19]