Pandas with Random Int

import numpy as np
import pandas as pd
df = pd.DataFrame(np.random.randint(0, 100, size=(3, 2)), columns=list('xy'))
df
x y
0 63 81
1 54 35
2 63 67