在运行str.endswith(“”)之后获取True的名称

时间:2019-03-11 19:52:45

标签: python pandas

city_df["Geography"].str.endswith("Quebec")

这是我的代码,为我提供了对与错的列表。我想要获得所有设置为True的城市的名称。

1 个答案:

答案 0 :(得分:1)

你快到了。

mask = city_df["Geography"].str.endswith("Quebec")
quebec_city = city_df[mask]

提供一个更完整的示例可能会有所帮助。