你可以使用Python内置方法`split()`将字符串拆分成单词列表,然后使用循环和条件语句来计算不包含在停用词列表中的单词数。具体实现如下:
```python
text = '''this is some sample text that will be used in a few of the below
questions. the content isn't important, it is just here to use in testing
the answers to the below questions.'''
stopwords = ['the', 'is', 'a', 'an']
words = 0
for word in text.split():
if word.lower() not in stopwords:
words += 1
print(words)
```
在这个例子中,我们首先定义了一个多行字符串`text`和一个停用词列表`stopwords`。然后,我们初始化变量`words`为0。
接下来,我们使用`split()`方法将该字符串拆分成单词列表,并使用循环遍历每个单词。在循环中,我们使用`lower()`方法将单词转换为小写字母,并使用条件语句检查它是否在停用词列表中。如果单词不在停用词列表中,则将`words`加1。
最后,我们打印出`words`,以验证它是否包含了正确的单词数。
希望这个例子能够帮助你!