Skip to content
Advertisement

python print array inside the dictionary

I want to print ‘array’ inside the dictionary but my code gives me ‘each value’ of the array.

for example, “array_ex” is a dictionary and has values like below with 12 rows for each array…

JavaScript

and I want to get each row of the array as a result.

JavaScript

However, my code returns each value of the array. How can I fix my code?

JavaScript

Advertisement

Answer

Simply loop over the rows:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement