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

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

Python 函數(shù):避免使用 if 子句進(jìn)行參數(shù)檢查

Python 函數(shù):避免使用 if 子句進(jìn)行參數(shù)檢查

人到中年有點(diǎn)甜 2023-02-07 11:11:20
這是我的功能:def save_to_mongo(self, df, collection, additional_variable):    for index, row in df.iterrows():        result = row.to_dict()        collection.update_one(            {"_id": str(row['date']) + "_" + str(row['sector']) + "_" + str(row['caseid']) + str(row[additional_variable])},            {                '$set': result            },            upsert=True)我有許多類似的函數(shù),其中additonal_variable可以包含None.我真的很想避免用這樣的風(fēng)格來(lái)膨脹代碼庫(kù):if additional_varibale is None:    collection.update_one(        {"_id": str(row['date']) + "_" + str(row['sector']) + "_" + str(row['caseid'])},        {            '$set': result        },        upsert=True)else:    collection.update_one(        {"_id": str(row['date']) + "_" + str(row['sector']) + "_" + str(row['caseid']) + str(row[additional_variable])},        {            '$set': result        },        upsert=True)我認(rèn)為這段代碼很難看并且難以維護(hù)。有沒(méi)有更好的方法或最佳實(shí)踐來(lái)避免使用這些長(zhǎng)的ifandelse語(yǔ)句?
查看完整描述

1 回答

?
倚天杖

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

您可以將塊最小if else化為 -


additional_varibale = '' if additional_varibale is None else str(row[additional_variable])

    

collection.update_one(

    {"_id": str(row['date']) + "_" + str(row['sector']) + "_" + str(row['caseid']) + additional_varibale},

    {

        '$set': result

    },

    upsert=True)


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

添加回答

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