0
How to access a file output by my python code?
My below code outputs a file, But where can I go and see it? "def make_dashboard (x, gdp_change, unemployment, title, file_name): output_file(file_name) output_notebook() p = figure(title=title, x_axis_label='year', y_axis_label='%') p.line(x.squeeze(), gdp_change.squeeze(), color="firebrick", line_width=4, legend="% GDP change") p.line(x.squeeze(), unemployment.squeeze(), line_width=4, legend="% unemployed") show(p)"
3 Answers
0
Usually a file created by Python is stored in the same folder as the python file.
0
Thanks..my issue is where to find the folder?,what is the path..
0
Same question
please help me to solve that question