import pandas as pd a = pd.Series('1') b = pd.Series(1) a.isin(b)
0 错误
数据类型:布尔
b.isin(a)
0 真
python pandas
pandas ×1
python ×1