第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何擴(kuò)展單詞中的撇號(hào)(s'cre??am)?

如何擴(kuò)展單詞中的撇號(hào)(s'cre??am)?

明月笑刀無(wú)情 2023-07-05 10:21:42
這是我的單詞表。(實(shí)際上我正在使用一個(gè)大列表。)bananafishscreamscreamingsuncreamsuncreams我想擴(kuò)大s'cream。它必須suncream僅匹配。不匹配,scream因?yàn)闆](méi)有撇號(hào)字符。不匹配,suncreams因?yàn)槟┪驳?s 下落不明。我對(duì)它的編程不是很好,因?yàn)樗黄ヅ渌械膯卧~。我嘗試過(guò)的。這很尷尬。我不知道我在做什么。find = "s'cream"with open('words') as f:    for line in f:        word = line.strip()        skipchars = False        for c in find:            if c == "'":                skipchars = True                continue            if skipchars:                for w in word:                    if c != w:                        continue            if c not in word:                break            skipchars = False        print(word)
查看完整描述

2 回答

?
慕無(wú)忌1623718

TA貢獻(xiàn)1744條經(jīng)驗(yàn) 獲得超4個(gè)贊

你可以用regex那個(gè)會(huì)更容易,用.+which的意思替換撇號(hào)

  • . 任何字符

  • + 1次或多次

import re


words = ['banana', 'fish', 'scream', 'screaming', 'suncream', 'suncreams']


find = "s'cream"

pattern = re.compile(find.replace("'", ".+"))


for word in words:

    if pattern.fullmatch(word):

        print(word)


查看完整回答
反對(duì) 回復(fù) 2023-07-05
?
HUH函數(shù)

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超4個(gè)贊

使用正則表達(dá)式這很容易:


使用的選擇\w+是與“單詞”字符(如字母)匹配,并且要求至少有 1 個(gè)與其映射的字符。


import re


find = "s'cream"


words = [

"banana",

"fish",

"scream",

"screaming",

"suncream",

"suncreams"

]


target_re = re.compile("^{}$".format(find.replace("'", "\w+")))

for word in words:

    if target_re.match(word):

        print("Matched:", word)

    else:

        print("Not a match:", word)


"""

output:

Not a match: banana

Not a match: fish

Not a match: scream

Not a match: screaming

Matched: suncream

Not a match: suncreams

"""


查看完整回答
反對(duì) 回復(fù) 2023-07-05
  • 2 回答
  • 0 關(guān)注
  • 150 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)