我triying從列表中刪除,包含「@」從字符串中刪除詞與
string = "@THISISREMOVED @test2 @test3 @test4 a comment"
splitted = string.split()
for x in splitted:
if '@' in x:
splitted.remove(x)
string =' '.join(splitted)
print(string)
所有單詞,並返回:
@test2 @test4 a comment
我想刪除所有的話包含'@'不只是第一個,我該怎麼做? 謝謝
你想從列表中刪除,或做你想從字符串中刪除? – juanchopanza
我收到一個字符串,所以..從列表 – Darcyys
這絕對沒有意義。 – juanchopanza