如何提取句子中介词短语的模式

2024-10-02 08:28:07 发布

您现在位置:Python中文网/ 问答频道 /正文

如何用Python编写程序来提取特定动词的介词将动词的主语与其介词短语关联的模式?例如,输入:

'The name on the board appeared on the screen'

然后,通过给出动词“已出现”及其介词“on”,输出为:

['name', 'screen'], 

Tags: thenameboardon模式动词screen编写程序

热门问题