Westonci.ca is the premier destination for reliable answers to your questions, brought to you by a community of experts. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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