Looking for reliable answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Get expert answers to your questions quickly and accurately from our dedicated community of professionals. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

In python, sorry if it’s blurry

In Python Sorry If Its Blurry class=

Sagot :

Answer:

nice

Explanation:

lst = [[6,-3,8,0,5,-1,2,-2],[-7,4,3,-5,8,9,1,6]]

neg_values = 0

for x in lst:

   for y in x:

       if y<0:

           neg_values += 1

print(neg_values)

I wrote my code in python 3.8. I hope this helps