AttributeError: 'list' object has no attribute 'strip'
Author: sneex-seoCreated Mar 17, 2021Updated Sep 13, 2023
from textblob import TextBlob
words = str("Кардиганы из норка") blob = TextBlob(words) perevod = blob.translate(from_lang ="ru", to='uk') print(perevod)
New error I catch today.
It said that: AttributeError: 'list' object has no attribute 'strip'

Source: sloria/TextBlob