what is the code that for each of the numbers in the List1, print a line containing twice the original number. For example, List1 =[3, 1, 5] would print 6 2 10To answer correctly this question you should use defining a function or the for loop or both.