I came across the code below,
period=volume[((volume['Id']==report.at[report.index[report_id],'id']) & \
(volume['Time']>=start_time) & \
(volume['Time']<=test_time))]
I read a post on operator & but what does it mean by &\
and what is this snippet of code doing?