Create a DF that includes the random numbers between 0 to 100 in 3 Rows and 4 Columns code example
Example: create random dataframe pandas
import numpy as np
import pandas as pd
df = pd.DataFrame(np.random.randint(0,100,size=(100, 4)), columns=list('ABCD'))