Question: python Write a function first_neg that takes a (possibly empty) list of numbers as input parameter, finds the first occurrence of a negative number, and

python

python Write a function first_neg that takes a (possibly empty) list of

Write a function first_neg that takes a (possibly empty) list of numbers as input parameter, finds the first occurrence of a negative number, and returns the index (i.e. the position in the list) of that number. If the list contains no negative numbers or it is empty, the program should return None. Use WHILE LOOP (AND NOT FOR LOOP) and your while loop should stop looping once the first negative number is found. Test your function with at least the examples below >>> first_neg ([2, 3, -1, 4, -2]) 2 >>> first_neg ( [2, 3, 1, 4, 2]) >>> first_neg ( [])

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!