Here is the code
import numpy as np
import pandas as pd
a = [[[1, 2, 3, 4, 5] , [6, 7, 7, 8, 10], [8, 7, 99, 89, 18]]]
b = np.asarray(a)
If I say print(b) I get:
[[[ 1 2 3 4 5]
[ 6 7 7 8 10]
[ 8 7 99 89 18]]]
I want to print the content of b one array after the other such as:
[ 1 2 3 4 5]
[ 6 7 7 8 10]
[ 8 7 99 89 18]
So I can save it in a csv format in different columns. I am using python3.7.10