I have this data
old= array([[171, 171, 171, ..., 170, 170, 170],
[171, 171, 171, ..., 170, 170, 170],
[171, 171, 171, ..., 170, 170, 170],
...,
[ 17, 17, 17, ..., 17, 17, 17],
[ 17, 17, 17, ..., 17, 17, 17],
[ 17, 17, 17, ..., 17, 17, 17]], dtype=uint8)
in this data i need to put my external array data points
new= array([ 65, 108, 105, 32, 105, 115, 32, 116, 104, 101, 32, 66, 101,
115, 116, 32, 105, 110, 32, 116, 104, 101, 32, 119, 111, 114,
108, 100, 32, 121, 101, 101, 104, 104, 104, 104, 104, 104, 104,
104])
in the first row of the old array such that output is like
old= array([[ 65, 108, 105, 32, 105, 115, 32, 116, 104, 101, 32,66,101,
115, 116, 32, 105, 110, 32, 116, 104, 101, 32, 119, 111, 114,
108, 100, 32, 121, 101, 101, 104, 104, 104, 104, 104, 104, 104,
104, ..., 170, 170, 170],
[171, 171, 171, ..., 170, 170, 170],
[171, 171, 171, ..., 170, 170, 170],
...,
[ 17, 17, 17, ..., 17, 17, 17],
[ 17, 17, 17, ..., 17, 17, 17],
[ 17, 17, 17, ..., 17, 17, 17]], dtype=uint8)