#413·TextBlob

Joining TextBlobs / Sentence

Author: thomasf1Created Sep 25, 2022Updated Sep 25, 2022

Not sure if this is a bug or feature request, I do enjoy that I can concentrate your Objects like strings. Now I wanted to concentrate a list, but ran into the following:

python
" ".join(storedSentences)

Getting: TypeError: sequence item 0: expected str instance, Sentence found

Unfortunately, the other way does not work either:

python
Sentence(" ").join(storedSentences)

TypeError: sequence item 0: expected str instance, Sentence found

Maybe I am doing it wrong?

PS: Great library! Especially the TextBlobs Are Like Python Strings! makes things really easy, thanks for implementing that :)