Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems A Practical Approach To Design Implementation And Management

Authors: THOMAS CONNOLLY

6th Edition

9353438918, 978-9353438913

More Books

Students also viewed these Databases questions

Question

2. Employees and managers participate in development of the system.

Answered: 1 week ago