TextBlob方法的时间复杂度

时间:2019-05-08 22:48:43

标签: python time-complexity textblob

我是python及其库的新手,为了更好地理解,我想知道这两行代码的时间复杂度。

1)text = TextBlob(str) // str is a string of length n

2)text.sentement

from textblob import TextBlob

def calc(review):
   review_blob = TextBlob(review)
   polarity = review_blob.sentiment.polarity

0 个答案:

没有答案