0
words = "Fine and Cloudy"
vowels = 'aeiouAEIOU'
my_words = [words.index(c) for c in words if c not in vowels and words.count(c) == 1]
print(my_words)
私はちょうど出力が[0, 9, 10, 14]
であり、この単純なコードはどのように機能するのか分かりませんか? 誰かが詳細に説明できますか?お願いします! ありがとうございます。私はそれがどのように動作するのか理解していない簡単なカウントコード
今私はそれを完全に得る。どうもありがとうございます! –