Python pandas 列の範囲を指定して欠損値判定

# Make DataframeIn:df = pd.DataFrame({"A" : ,"B" : ,"C" : ,"D" : np.random.randn(8)})Out:A B C D0 foo one hoge -0.650722 ...
ある要素が初めて現れるのは何番目か?[Python]

num_list = num_list.index(1)>>2num_list.index(0)>>0num_list.index(2)>>Traceback (most recent call last):>>File "<ipyt ...
Spyder with python2/3 で自動補完(Autocomplete)が使えないときの対処法

以下のパッケージをインストールすれば解決
Python2と3でパッケージ名が違うという罠…
$ pip install rope
$ pip install rope-py3k