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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

我如何獲得給定兩個單詞的所有組合列表?

我如何獲得給定兩個單詞的所有組合列表?

慕妹3242003 2022-12-20 11:12:45
我試圖想出一種方法,以所有可能(但常見)的方式(如小寫、大寫和大寫)獲取諸如“是”之類的單詞列表。然后我發(fā)現(xiàn)你不能在這個函數(shù)中放兩個詞(“sup”和“hello”)。有沒有一種方法可以使用此功能將所有單詞放在一個列表中,或者應(yīng)該重新開始?def case_insensetive(text) :    insensetive_string = [text.lower(),text.upper(),text.capitalize()]    print (insensetive_string)try :   case_insensetive("sup","hello")except :   raise Exception ("you screwed something")
查看完整描述

2 回答

?
縹緲止盈

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

這是map()函數(shù)的典型工作。


另外,在您的函數(shù)中使用return而不是。print


def case_insensetive(text):

    insensetive_string = [text.lower(),text.upper(),text.capitalize()]

    return insensetive_string



words = ['yes', 'hello']


r = list(map(case_insensetive, words))


print(r)

輸出:


[['yes', 'YES', 'Yes'], ['hello', 'HELLO', 'Hello']]

如果您想要一個列表,而不是嵌套列表:


flat_list = [item for sublist in r for item in sublist]

print(flat_list)


['yes', 'YES', 'Yes', 'hello', 'HELLO', 'Hello']


查看完整回答
反對 回復(fù) 2022-12-20
?
嚕嚕噠

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

只需傳遞一個任意參數(shù)(*args)..然后就可以接受任意數(shù)量的參數(shù)..


def case_insensetive(*texts):

    insensetive_string = []

    for text in texts:

        insensetive_string+=[text.lower(),text.upper(),text.capitalize()]

    print(insensetive_string)


case_insensetive("sup",'hello')

輸出:['sup', 'SUP', 'Sup', 'hello', 'HELLO', 'Hello']


查看完整回答
反對 回復(fù) 2022-12-20
  • 2 回答
  • 0 關(guān)注
  • 117 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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