标签: python pandas
行
Entry1 1 Entry2 0 Entry Y
我将Entry定义为:
Entry
df.loc[(df['Entry1']==1) & (df['Entry2']==1),'Entry'] = 'Y'
我在这里做错什么了吗?