Créer DF à partir de deux tableaux

a = np.random.rand(5)
b = np.sqrt(a)
df = pd.DataFrame({'a':a, 'b':b})
Lena Rubi