Pythonを使用した単語のトークン化方法 split()メソッドを使用する方法:text = "Pythonを使用した単語のトークン化方法" tokens = text.split() print(tokens)>>More