Question: how do you solve this and get 4? Given the following code statements: def myFunction(aNumList): result=0foriinaNumList:ifi%2==0:result+=i return result numList=[6,5,1,2] print(myFunction(numList)) What is the correct output
Given the following code statements: def myFunction(aNumList): result=0foriinaNumList:ifi%2==0:result+=i return result numList=[6,5,1,2] print(myFunction(numList)) What is the correct output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
