so I have this code but I don't want to use many if-else condition and I wonder if I could simplify this. Any idea for this? Can I use a loop for this?
if dh1['date1'][0].strftime("%A") == 'Monday':
df=df=pd.concat([dh1,dh2.tail(84)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)
elif dh1['date1'][0].strftime("%A") == 'Tuesday':
df=df=pd.concat([dh1,dh2.tail(96)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)
elif dh1['date1'][0].strftime("%A") == 'Wednesday':
df=df=pd.concat([dh1,dh2.tail(108)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)
elif dh1['date1'][0].strftime("%A") == 'Thursday':
df=df=pd.concat([dh1,dh2.tail(120)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)
elif dh1['date1'][0].strftime("%A") == 'Friday':
df=df=pd.concat([dh1,dh2.tail(132)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)
elif dh1['date1'][0].strftime("%A") == 'Saturday':
df=df=pd.concat([dh1,dh2.tail(144)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)
elif dh1['date1'][0].strftime("%A") == 'Sunday':
df=df=pd.concat([dh1,dh2.tail(156)])
df=df.sort_values(['date1','hr1'])
df=df.reset_index()
df=df.drop('index', 1)