Posts by Eric Ruiz • 21 points
1 post
-
1
votes3
answers8207
viewsA: Separate each phrase word in an index from the python list
In a very elementary way, that would be: >>> "Meu texto a ser separado em palavras".split() ['Meu', 'texto', 'a', 'ser', 'separado', 'em', 'palavras'] Documentation:…