Buat Pandas DataFrame dengan nomor acak

#using numpy's randint
df = pd.DataFrame(np.random.randint(0,100,size=(15, 4)), columns=list('ABCD'))
Noob Coder