AttributeError: 'list' 对象没有属性 'strip'
作者: sneex-seo创建于 2021年3月17日更新于 2023年9月13日
from textblob import TextBlob
words = str("Кардиганы из норка")
blob = TextBlob(words)
perevod = blob.translate(from_lang="ru", to='uk')
print(perevod)
今天我遇到的新错误是: AttributeError: 'list' object has no attribute 'strip'

内容来源: sloria/TextBlob