out_df['# of Days'] = out_df['# of Days'].replace('',1)
out_df['# of Days'] += 1
print(out_df)
Would work except when cell's have NULL as their value, it does not add the 1 value.
Trying to add 1 to the entire column including empty cell in the column.