with open('Pride and Prejudice.txt', 'r') as f: text = f.read() genre = 'novel' count = count_vocabulary_by_genre(text, genre)怎么把文本和genre当成一个匹配的整体
时间: 2024-01-07 13:04:19 浏览: 87
pride_and_prejudice.txt
你可以将文本和genre封装为一个元组,然后将该元组作为参数传递给函数。例如:
```
with open('Pride and Prejudice.txt', 'r') as f:
text = f.read()
genre = 'novel'
count = count_vocabulary_by_genre((text, genre))
```
然后在函数中,你可以按照如下方式访问文本和genre:
```
def count_vocabulary_by_genre(text_and_genre):
text, genre = text_and_genre
# 在这里处理文本和genre
```
这样就可以将文本和genre作为一个匹配的整体传递给函数了。
阅读全文