소스 뷰어
import numpy as np
a = np.arange(1, 25).reshape(2, 3, 4)
b = np.arange(1, 25).reshape(2, 3, 4)
c = np.concatenate( (a, b ), axis=0 )
print( "a = ", a, sep="\n" )
print( "-"*60 )
print( "a.shape = ", a.shape )
print( "-"*60 )
print( "b = ", b, sep="\n" )
print( "-"*60 )
print( "b.shape = ", b.shape )
print( "-"*60 )
print( "c = ", c, sep="\n" )
print( "-"*60 )
print( "c.shape = ", c.shape )
print( "-"*60 )