At Westonci.ca, we provide clear, reliable answers to all your questions. Join our vibrant community and get the solutions you need. Our Q&A platform offers a seamless experience for finding reliable answers from experts in various disciplines. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A 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