2
我試圖去解析一些文本並尋找某些模式。我正在尋找的一種模式是包含'AS'和'。'的字符串。Python如果語句在''中使用'和'
假設我有一個字符串列表,我使用它來查找和追加選擇字符串到一個新的列表。
list1 = []
for ngram in bigrams:
if ' AS ' and '.' in ngram:
list1.append(ngram)
這不是工作,這似乎是運作更像是:
if ' AS ' or '.' in ngram:
有什麼建議?