写出对《natural language processing with python》这本书第一章节内容进行单词查找和分析,找出具有词根词缀的单词的代码。
时间: 2024-05-20 10:18:23 浏览: 242
考研英语 词根词缀单词.zip
5星 · 资源好评率100%
可以使用Python中的re模块来进行正则表达式匹配,以下是示例代码:
import re
# 打开文件并读取第一章内容
with open('natural_language_processing_with_python.txt', 'r') as f:
chapter_one = f.read()
# 定义正则表达式匹配单词
pattern = r'\b\w+(?:able|ment|ery|ity|ness|ion|ism)\b'
# 查找并输出具有词根词缀的单词
matches = re.findall(pattern, chapter_one)
print(matches)
阅读全文