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

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

Python.如何讓這個(gè)函數(shù)返回一個(gè)整數(shù)而不是一個(gè)列表?

Python.如何讓這個(gè)函數(shù)返回一個(gè)整數(shù)而不是一個(gè)列表?

喵喵時(shí)光機(jī) 2022-10-06 15:42:06
該函數(shù)接受一個(gè)字符串輸入,去除標(biāo)點(diǎn)符號(hào),計(jì)算每個(gè)單詞中的字母數(shù),并返回原始字符串中最短單詞的字母數(shù)。但是,它將答案作為列表返回。我需要它以整數(shù)形式返回結(jié)果。在這個(gè)給定的示例中它返回 [2],我需要它返回 2。我應(yīng)該如何修改此代碼?def find_short(s):    import string    string_no_punct = s.strip(string.punctuation)     word_lenght_list = list(map(len, string_no_punct.split()))    word_lenght_list.sort()    new_list = word_lenght_list[:1]    return new_listprint(find_short("Tomorrow will be another day!"))
查看完整描述

3 回答

?
慕娘9325324

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

你的問題是


word_lenght_list[:1]

是一個(gè)切片操作,返回一個(gè)包含word_lenght_listfrom0到1-1ie的所有元素的列表0,因此您在示例案例中得到一個(gè)列表[2]。要獲得 中的最小值word_lenght_list,只需使用word_lenght_list[0]。


更好的解決方案是跳過sort并直接使用min:


def find_short(s):

    import string

    string_no_punct = s.strip(string.punctuation) 

    word_length_list = list(map(len, string_no_punct.split()))

    new_list = min(word_length_list)

    return new_list


查看完整回答
反對(duì) 回復(fù) 2022-10-06
?
POPMUISE

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

您的新代碼應(yīng)如下所示:


def find_short(s): 

    import string

    string_no_punct = s.strip(string.punctuation) 

    word_lenght_list = list(map(len, string_no_punct.split())) 

    word_lenght_list.sort() 

    new_list = word_lenght_list[:1] 

    return new_list[0] 

print(find_short("Tomorrow will be another day!"))

只需更改return new_list為return new_list[0]


查看完整回答
反對(duì) 回復(fù) 2022-10-06
?
嗶嗶one

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

在您的代碼中

new_list = word_lenght_list[:1]

這個(gè) [:1] 是一個(gè)切片符號(hào)。當(dāng)你對(duì)一個(gè)列表進(jìn)行切片時(shí),它會(huì)返回一個(gè)列表,當(dāng)你對(duì)一個(gè)字符串進(jìn)行切片時(shí),它會(huì)返回一個(gè)字符串。這就是為什么你得到 list 而不是 int


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

添加回答

舉報(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)