我有一组字符串,所有的字符串都有两个特定的子字符串之一,我想删除:
set1 = {'Apple.good', 'Orange.good', 'Pear.bad', 'Pear.good', 'Banana.bad', 'Potato.bad'}
我想要&;.good
"和“;.bad
"从所有字符串中删除子字符串。我试了一下:
for x in set1:
x.replace('.good', '')
x.replace('.bad', '')
但它似乎不工作,set1
保持完全相同。我尝试使用for x in list(set1)
代替,但这并没有改变任何东西。