News

For each number in lst_nums, multiply that number by 2 and append it to a new list called larger_nums.
product = 1 # have the for loop go through each number in the list for number in numbers: # output the values of product, number, and product*number so we can see # how the loop computes the return ...