Introducción a Datos Tabulados y Espaciales




Pay Notebook Creator: Roy Hyunjin Han0
Set Container: Numerical CPU with TINY Memory for 10 Minutes 0
Total0

Jupyter

In [ ]:
def f(x):
    # import pdb; pdb.set_trace()
    # from IPython import embed; embed()
    # from IPython.core.debugger import set_trace; set_trace()
    x = x * 2
    x = x + 1
    return x

f(1)
In [ ]:
def f(x):
    y = 10 / x
    return y

# f(0)
In [ ]:
# debug  # Imprima q para salir

Terminal

Abra una nueva terminal en Jupyter.

New > Terminal

Edite el script.

vim sum_squares.py

Elija un comando.

# import IPython; IPython.embed()
import pudb; pudb.set_trace()

Ejecute el script.

python sum_squares.py