Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started