IPython
# ipython安装
sudo pip install IPython
# ipython启动
python -m IPython
# 使用numpy
import numpy as np
from numpy.random import randn
data = {i : randn() for i in range(7)}
data
-
tab键自动完成
image.png -
内省
image.png
# ipython安装
sudo pip install IPython
# ipython启动
python -m IPython
# 使用numpy
import numpy as np
from numpy.random import randn
data = {i : randn() for i in range(7)}
data
tab键自动完成
内省