取下字符串作爲名單之列的特定字符串我有一個pandas.DataFrame
:在pandas.DataFrame
index question_id tag
0 1858 [pset3, game-of-fifteen]
1 2409 [pset4]
2 4346 [pset6, cs50submit]
3 9139 [pset8, pset5, gradebook]
4 9631 [pset4, recover]
我需要刪除從字符串列表中每個字符串中tag
列除了pset*
字符串。
所以,我需要的是這樣結束:
index question_id tag
0 1858 [pset3]
1 2409 [pset4]
2 4346 [pset6]
3 9139 [pset8, pset5]
4 9631 [pset4]
我怎麼能做到這一點嗎?