I am using Ipython Notebook 2
I have a file name in variable which dynamically calculates the location and file name of file located in current directory, And I want to insert that variable in my markup to download it
below is the code:
result_file ="Revenue_per_city"+start_date+"_"+end_date+".xlsx
then my markup to download the file:
<a href= {{result_file}}> Click here to download the result</a>
but its not working as expected