文字列とそれを取り除くコードがあります:
def break_words(stuff):
words = stuff.split(' ')
return sorted(words)
sentence = 'All god'+"\t"+'things come to those who weight.'
print sentence#works as expected
words = break_words(sentence)
print words
sentence
\t
期待どおりに(記号なしで)印刷されます。しかし、words
次のように印刷されます:
['All', 'come', 'god\tthings', 'those', 'to', 'weight.', 'who']
リストから削除するにはどうすればよい\t
ですか?