python单词什么意思_“逐字逐句”是什么意思?语法在Python中意味着什么?
I see the following script snippet from the gensim tutorial page.
What's the syntax of word for word in below Python script?
>> texts = [[word for word in document.lower().split() if word not in stoplist]
>> for document in documents]
解決方案
This is a list comprehension. The code you posted loops through every element in document.lower.split() and creates a new list that contains only the elements that meet the if condition. It does this for each document in documents.
Try it out...
elems = [1, 2, 3, 4]
squares = [e*e for e in elems] # square each element
big = [e for e in elems if e > 2] # keep elements bigger than 2
As you can see from your example, list comprehensions can be nested.
總結
以上是生活随笔為你收集整理的python单词什么意思_“逐字逐句”是什么意思?语法在Python中意味着什么?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: shell把mysql每句导出_shel
- 下一篇: python的作者为什么要创造pytho