Pythonで文字列内の最長の単語を見つける方法
最長の単語を見つけるシンプルな方法は、文字列を単語に分割して、各単語の長さを比較することです。次のコード例をご覧ください。def find_longest_word(text): words = text.split() longest_word = '' for word in words: if len(word) > len(longest_word): longest_word = word return longest_word text = "Pythonで文字列内の最長の単語を見つける方法を教えてくださ>>More