Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Jupyter notebook 2015-05-16-033308.ipynb

6 views
Kernel: Python 2 (SageMath)
pow(3,3) h = "hola mundo" list(h) l = list(h)
l
['h', 'o', 'l', 'a', ' ', 'm', 'u', 'n', 'd', 'o']
import numpy as np np.sqrt(23)
--------------------------------------------------------------------------- NameError Traceback (most recent call last) <ipython-input-3-8132c4d5ff13> in <module>() 1 ----> 2 sqrt(23) NameError: name 'sqrt' is not defined
version()
--------------------------------------------------------------------------- NameError Traceback (most recent call last) <ipython-input-19-1fcb3defec0c> in <module>() ----> 1 version() NameError: name 'version' is not defined
print "hola mundo"
hola mundo