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)"

20th Apr 2019, 6:33 AM
Sakthi Upaash
Sakthi Upaash - avatar
3 Answers
0
Usually a file created by Python is stored in the same folder as the python file.
20th Apr 2019, 9:57 AM
Bela Brockmann
Bela Brockmann - avatar
0
Thanks..my issue is where to find the folder?,what is the path..
20th Apr 2019, 3:13 PM
Sakthi Upaash
Sakthi Upaash - avatar
0
Same question please help me to solve that question
29th Sep 2019, 5:07 PM
Pratik Kumar
Pratik Kumar - avatar