Concat Pandas DataFrame avec un tableau Numpy.

df = pd.concat([df, pd.DataFrame(arr, columns=["C", "D"])], axis=1)
Helpful Hare