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

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

需要幫助在 python 中編寫(xiě) Pig Latin 翻譯代碼

需要幫助在 python 中編寫(xiě) Pig Latin 翻譯代碼

慕姐4208626 2023-07-11 10:39:25
我有一項(xiàng)任務(wù),必須將英語(yǔ)單詞翻譯成豬拉丁語(yǔ),這意味著如果一個(gè)單詞以元音開(kāi)頭,則該單詞末尾添加“ay”(“apple”將變成“appleay”),這不是一個(gè)問(wèn)題是因?yàn)榇a相對(duì)容易編寫(xiě)。然而,第二部分是,如果單詞以輔音開(kāi)頭,則第一個(gè)元音之前的所有輔音都會(huì)被刪除并添加到單詞的末尾,之后字符串“ay”也會(huì)再次添加到末尾(“cheese”) ”將變成“eesechay”)。這是一個(gè)相當(dāng)簡(jiǎn)單的概念,但我正在努力尋找一種方法來(lái)翻譯該單詞(如果該單詞以輔音開(kāi)頭),這是到目前為止我的代碼:def pigLatin(word):    for l in vowels:        if word[0] == l:            word = word + "ay"    for L in consonants:        if word[0] == L:            for i in vowels:                for s in word:                    if s == i:                        #this is where im completely lost僅供參考,元音和輔音是僅包含元音和輔音的數(shù)組,單詞由用戶(hù)輸入。編輯:謝謝您的幫助,我已經(jīng)成功地重新編寫(xiě)了代碼并得到了一些有用的東西:def pigLatin(word):    if word[0]in vowels:        word = word + "ay"    elif word[0] in consonants:        c = ""        for l in word:            if l in vowels:                break            elif l in consonants:                c = c + l        word = word[len(c)-len(word):len(word)]        word = word + c + "ay"再次感謝您的幫助:)
查看完整描述

2 回答

?
呼啦一陣風(fēng)

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

以下是一些可能有幫助的事情:


ascii_lowercase模塊中string是包含所有小寫(xiě)字母字符的預(yù)定義字符串:


>>> from string import ascii_lowercase

>>> ascii_lowercase

'abcdefghijklmnopqrstuvwxyz'

>>> 

我們可以通過(guò)創(chuàng)建一組元音并獲取元音和所有字符之間的差異來(lái)生成所有輔音的集合:


from string import ascii_lowercase as alphabet


vowels = set("aeiou")

consonants = set(alphabet) ^ vowels


print(consonants)

輸出:


{'c', 's', 'q', 'm', 'g', 'd', 'y', 'l', 'b', 'k', 't', 'j', 'r', 'p', 'h', 'v', 'n', 'w', 'z', 'f', 'x'}

>>> 

由于這是一個(gè)集合,因此沒(méi)有內(nèi)在順序,但這并不重要。如果我們想知道給定的字符是輔音還是元音,我們只需檢查相應(yīng)集合的成員資格(您可以對(duì)列表執(zhí)行相同的操作,但集合將是首選數(shù)據(jù)結(jié)構(gòu))。


無(wú)論您的vowelsand是否使用列表或集合consonants,您都可以通過(guò)簡(jiǎn)單地檢查成員資格(檢查某個(gè)字符是否在集合中)來(lái)簡(jiǎn)化代碼:


if word[0] in vowels:

    # The first letter is a vowel

elif word[0] in consonants:

    # The first letter is a consonant

如果您事先知道word只包含小寫(xiě)字母字符(沒(méi)有特殊符號(hào)、數(shù)字、大寫(xiě)字母等),那么您可以進(jìn)一步簡(jiǎn)化它:


if word[0] in vowels:

    # The first letter is a vowel

else:

    # If it's not a vowel, it must be a consonant

然而,如果你仔細(xì)想想,你根本不需要檢查第一個(gè)字母是否是元音。您已經(jīng)知道您將在最終字符串的末尾添加"ay",無(wú)論第一個(gè)字母是元音還是輔音 - 因此,您實(shí)際上只需要檢查第一個(gè)字母是否是輔音。


使用到目前為止的所有內(nèi)容,我將得到以下偽代碼:


def to_pig_latin(word):


    from string import ascii_lowercase as alphabet


    vowels = set("aeiou")

    consonants = set(alphabet) ^ vowels


    if word[0] in consonants:

        # Do something


    return ... + "ay"

我已重命名該 function to_pig_latin,因?yàn)槭走x蛇形命名法,并且在函數(shù)名稱(chēng)前加上前綴to表示您正在翻譯/轉(zhuǎn)換某些內(nèi)容。vowels我還將和的創(chuàng)建移到consonants了函數(shù)中,只是因?yàn)闆](méi)有理由將它放在函數(shù)之外,而且這樣更可愛(ài)。


查看完整回答
反對(duì) 回復(fù) 2023-07-11
?
牧羊人nacy

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

我同意 Charles Duffy 的評(píng)論,即我們不為您設(shè)計(jì)程序。然而,你走錯(cuò)了路,我認(rèn)為你需要一些指導(dǎo)。這是我正在談?wù)摰囊粋€(gè)例子。有很多方法可以做到這一點(diǎn),這是一個(gè)簡(jiǎn)單的解決方案(眾多解決方案之一)。


def pigLatin(word):

    vowels = list("aeiou")

    consonants = list("bcdfghjklmnpqrstvwxyz")


    if word[0] in vowels:

        word = word + "ay"

    else:

        for counter, letter in enumerate(list(word)):

            if letter in vowels:

                word = word[counter:] + word[:counter] + "ay"

                break


    return word



print(pigLatin("art"))

print(pigLatin("donkey"))

如果傳遞給 pigLatin 的單詞包含大寫(xiě)字符怎么辦?您可以通過(guò)將所有內(nèi)容轉(zhuǎn)換為小寫(xiě)(或大寫(xiě),您的偏好)來(lái)修改該函數(shù)。


def pigLatin(word):

    vowels = list("aeiou")

    consonants = list("bcdfghjklmnpqrstvwxyz")


    if word[0].lower() in vowels:

        word = word + "ay"

    else:

        for counter, letter in enumerate(list(word)):

            if letter.lower() in vowels:

                word = word[counter:] + word[:counter] + "ay"

                break


    return word

您知道這段代碼有多簡(jiǎn)單和靈活嗎?


查看完整回答
反對(duì) 回復(fù) 2023-07-11
  • 2 回答
  • 0 關(guān)注
  • 229 瀏覽
慕課專(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)