标签: string dataframe
伙计,
正如标题所述,我想知道是否存在一种更有效的方法来找到位于数据帧列中的各种字符串中的单词。我的解决方案如下。
total=0 for title in list(df['JobTitle']): total+=title.count('Chief') total