私は文字列を配列していますが、いくつか置き換えたいと思います。たとえば:文字列内の文字を新しい単語に置き換えます。
my_strings = [['hi/hello world &'], ['hi/hello world'], ['it\90s the world'], ['hello world'], ['hello "world"']]
new_strings = [['hi and hello world'], ['hi and hello world'], ["it's the world"], ['hello world'], ['hello world']]
はどのようにして置き換えることができます/として、配列内の文字列は、これらの文字が含まれている場合、言葉の周りに「」&と\ 90を削除し、削除しますか?その記事で見られるように
HTTPS
は次に、目的のリストを取得するにはあなたのリストとのdict以上を踏まえ
replace
言葉を反復処理します://www.tutorialspoint.com/python/string_replace.htm – oshaiken公式ドキュメントのreplaceメソッドをご覧ください:https://docs.python.org/2/library/string.html –
実際には、文字列の配列はありません。あなたの誤称を使って(配列ではなく "リスト"でなければなりません)、配列の配列があります。各文字列のまわりに余分な '['と ']'がある理由はありますか? –