notebook.community
Edit and run
Este cuaderno esta escrito con Markdown, que además sabe Latex, por ejemplo $$x^2$$
In [7]: def greet(name): msg = "Hello " + name + "!" print(msg)
def greet(name): msg = "Hello " + name + "!" print(msg)
In [8]: greet("Mauricio")
greet("Mauricio")
Hello Mauricio!
In [ ]: