你可以使用Python内置函数`len()`来计算字符串中的字符数。具体实现如下:
```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.'''
characters = len(text)
print(characters)
```
在这个例子中,我们首先定义了一个多行字符串`text`。然后,我们使用`len()`函数计算该字符串中的字符数,并将结果赋值给变量`characters`。
最后,我们打印出`characters`,以验证它是否包含了正确的字符数。
希望这个例子能够帮助你!