| 1 | initial version |
Try writing your output to an html file. Do something like:
f=open('myoutput.html','w')
f.write(some output)
f.write(some more output)
f.close()
That file should appear as a link in the output of the cell. If you click on the link, you should see your output as an html file.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.