Question: Expected Behavior Write a Python function times_(l) that takes as arguments a list and returns a list consisting of the elements of i multiplied by

Expected Behavior Write a Python function times_(l) that takes as arguments a list and returns a list consisting of the elements of i multiplied by the position number of the element. In other words, if L is the list then the value returned by times i) is the list Your solution should use list comprehensions only. It should not use any other control statements-i.?., no if, for, while, or try statements, except as needed within the Lis. comprehension Examples 1. Call: times i(11, 22,33,44,55]) 2. Call: times i(I0,100,90,80,70,60, 50,40,30,20,10]) 3. Call: times-i ([]) Result: [0, 22, 66, 132, 220] Reault: [0. 100, 180, 240, 280, 300, 300, 280, 240, 180, 100] Result: n
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
