句子标点符号 return True- Spacy

Sentence Punctuation return True- Spacy

我正在使用 pandas.

将包含句子的逗号写到 excel
lists = [sent for sent in doc.sents if ',' in sent.string.lower()]

发现,我可以 return 在 excel 中为它判断对错。

=ISNUMBER(SEARCH(",", A1))

我使用下面的代码提取句子并将其列为 excel

中的行
sentences = [sent.string.strip() for sent in doc.sents]

预计:

Sentence                                 IS_comma_sent
This sentence contains no comma.         False
There is a , in this sentence.           True

pandas.

中关于如何操作的任何建议

IIUCstr.contains

df['Is_comma_sent']=df['Sentence'].str.contains(',')