-4

次のようなテキストがあります。

text = "All human beings are born free and equal in dignity and rights. They are endowed with reason and conscience and should act towards one another in a spirit of brotherhood."

テキストを処理し、テキストの 3 番目の単語ごとに「like」という単語を挿入する新しいバージョンを生成する関数 hedging(text) を作成するにはどうすればよいですか?

結果は次のようになります。

text2 = "All human beings like are born free like and equal in like..."

ありがとうございました!

4

2 に答える 2

1

あなたはそのようなもので行くことができます:

' '.join([n + ' like' if i % 3 == 2 else n for i, n in enumerate(text.split())])
于 2013-04-03T07:40:17.213 に答える