テキスト内の最長の単語を見つける方法(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 = "ここにテキストを入力してください。" #>>More