in python!!!
Using the provided variable num_list, write a for loop to loop across each value, multiplying it by1 Store the result for each value, in a list called eval_1,by defining eval_1 before the loop, and using append inside the loop. In [66]: # This creates a list of all numbers from 1-12, inclusive num-list list ( range (1 , 13)) = In [67]: # YOUR CODE HERE # list contains range of number from 1
OR
OR