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

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

為什么添加代碼的后半部分后執(zhí)行會(huì)發(fā)生變化?

為什么添加代碼的后半部分后執(zhí)行會(huì)發(fā)生變化?

滄海一幻覺 2022-09-06 19:48:41
我在編寫用于測(cè)試pangram(至少包含一次所有26個(gè)字母表的字符串)的代碼時(shí)遇到了困難。當(dāng)基于第一部分執(zhí)行時(shí),如下所示:def ispangram(x):    alphabet="abcdefghijklmnopqrstuvwxyz"    for i in alphabet:        if i in x.lower():            return True代碼工作正常。但是如果我添加 else 條件:def ispangram(x):    alphabet="abcdefghijklmnopqrstuvwxyz"    for i in alphabet:        if i in x.lower():            return True        else i not in x.lower():            return False該代碼將每個(gè)輸入作為有效的全圖返回。有人可以幫我了解這里出了什么問題嗎?
查看完整描述

2 回答

?
白板的微信

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

您沒有檢查字母表中的每個(gè)字母。您只檢查單詞是否包含字母 。讓我們檢查控制流a


def is_pangram(x):

    x = x.lower()

    alphabet="abcdefghijklmnopqrstuvwxyz"


    # we begin iteration here

    for i in alphabet:

        # we check if the letter is in the word

        if i in x:

            # we return! This will stop execution at the first True

            # which isn't always the case

            return True

        else:

            # we return again! since we've covered all cases, you will

            # only be checking for a

            return False

要解決此問題,您可以執(zhí)行以下兩項(xiàng)操作之一。使用循環(huán),您可以只檢查字母是否不在 中,如果字母不在,則返回,并在末尾返回:xFalseTrue


def is_pangram(x):

    x = x.lower()

    alphabet="abcdefghijklmnopqrstuvwxyz"


    for i in alphabet:

        if i not in x:

            return False


    # this means we made it through the loop with no breaks

    return True

或者,您可以使用運(yùn)算符檢查字母表中的所有字母是否都在單詞中,該單詞返回 ,否則返回allTrueFalse


def is_pangram(x):

    x = x.lower()

    alphabet="abcdefghijklmnopqrstuvwxyz"

    return all(i in x for i in alphabet)


查看完整回答
反對(duì) 回復(fù) 2022-09-06
?
HUX布斯

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

對(duì)于包含任何字母的任何字符串,第一個(gè)函數(shù)將返回 true。您需要驗(yàn)證每個(gè)字母是否都在輸入字符串中:


import string


def ispangram(x):

    x = x.lower()

    for c in string.ascii_lowercase:

        if c not in x:

            # a letter is not in the input string, so the input string is not a pangram

            return False


    # if we got here, each letter is in the input string

    return True


查看完整回答
反對(duì) 回復(fù) 2022-09-06
  • 2 回答
  • 0 關(guān)注
  • 96 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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