Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168733
Image: ubuntu2004
def clock(delay=1): import time; print time.asctime() sleep(delay) id = sagenb.notebook.interact.SAGE_CELL_ID html("<script>evaluate_cell(%s,0)</script>"%id)
clock()
Fri Jun 17 10:25:25 2011
def stock(symbol, delay=1): print finance.Stock(symbol) sleep(delay) id = sagenb.notebook.interact.SAGE_CELL_ID html("<script>evaluate_cell(%s,0)</script>"%id)
stock('GOOG')
GOOG (492.4)