Question: Consider the following function: def CountNonNegative(L) : Count =0 for x in L : if x>=0 : Count +=1 return Count What is the output
Consider the following function: def CountNonNegative(L) : Count =0 for x in L : if x>=0 : Count +=1 return Count What is the output of this function when the list L=[5,2,1] is received as input? A. What is the output of this function when the list L=[0,2,3,5] is received as input? A
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
