我有一個看起來像這樣的數據集。檢查一個字符串是否包含python中的另一個子字符串
**name** **url** **title**
Microsoft asdfgaethgaetgh Microsoft Is a big company
Apple aeiurghp iphone is a Apple product
Google iailsu Yahoo, Bing Profit Rises
我想用一個標誌,其中,如果「名」的單元格的值出現在「標題」的單元格值「真」是。否則,「假」
我使用這樣的事情
df['flag'] = (df.name).isin(df.title)
但是這給所有的標誌爲「假」,whereaas前兩個標誌應該是「真」
哪有我照顧這個?
什麼是'isin'?只需使用'in'運算符:''Microsoft'in'Microsoft is a large company'' – poke