最佳答案
我相信有一个明显的方法来做到这一点,但不能想到任何圆滑的现在。
基本上,我不想引发异常,而是想获得True
或False
,以查看熊猫df
索引中是否存在一个值。
import pandas as pd
df = pd.DataFrame({'test':[1,2,3,4]}, index=['a','b','c','d'])
df.loc['g'] # (should give False)
我现在工作的是以下内容
sum(df.index == 'g')