i need to create a dataframe such that i have the output as follows
day hour cal_hr
1 6 106
1 7 107
1 8 108
..
..
1 24 124
..
7 1 701
7 2 702
..
..
7 24 724
i want to loop through day and then hour and then do a concat of day and hour. With preceding 0 for 106(say)
something like
for i in range(1,8):
for j in range(6,25):
df.append(i,j)
df=pd.dataFrame(df)
can df.append create two variables simaltaneously

