1 | initial version |
You can use the Data Menue
DATA is an environment variable: path to the attached files of the respective worksheet.
L = [0..10]
out = file(DATA+'mydata.txt','w')
for k in L:
out.write(str(k)+'\n')
out.close()
list_plot(L).save(DATA+'myplot.png')
The files should appear in the list of Data files.