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

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

Flask 應(yīng)用程序的行為與動(dòng)態(tài)列表和元組不符合預(yù)期

Flask 應(yīng)用程序的行為與動(dòng)態(tài)列表和元組不符合預(yù)期

慕勒3428872 2023-04-18 16:27:55
a = [2, 237, 3, 10]b = (0, 0, {'product_id': '', 'product_uom_qty': ''}), (0, 0, {'product_id': '', 'product_uom_qty': ''})start_index = 0b = list(b)for b_entry in b:    end_endex = start_index + len(b_entry[2]) - 1    for value in range(start_index, end_endex):        b_entry[2]['product_id'] = a[value]        b_entry[2]['product_uom_qty'] = a[value + 1]    start_index += len(b_entry[2])print(b)按需工作并產(chǎn)生[(0, 0, {'product_id': 2, 'product_uom_qty': 237}), (0, 0, {'product_id': 3, 'product_uom_qty': 10})]但是在燒瓶應(yīng)用程序中 @app.route('/listener', methods=['POST'])def listener():    if request.method == 'POST':        content = request.json        logging.info(content)        invnm = content[0]['InvoiceNumber']        fx = content[0]['InvoiceNumberPrefix']        customer = content[0]['CustomerID']        noi = (len(content[0]['OrderItemList']))        itersandid = []        changetos = {'672': 2,             '333': 3}        for d in content:            for i in d["OrderItemList"]:                itersandid.append(i.get("ItemID"))                itersandid.append(i.get("ItemQuantity"))        a = [changetos.get(x, x) for x in itersandid]        sales = (0, 0, {'product_id':'','product_uom_qty':''}),        b = []        b.extend(sales*noi)        print(a)        print(b)        start_index = 0        b = list(b)        for b_entry in b:            end_endex = start_index + len(b_entry[2]) - 1            for value in range(start_index, end_endex):                b_entry[2]['product_id'] = a[value]                b_entry[2]['product_uom_qty'] = a[value + 1]            start_index += len(b_entry[2])        print(b)有時(shí)候是這樣的[(0, 0, {'product_id': 3, 'product_uom_qty': 10}), (0, 0, {'product_id': 3, 'product_uom_qty': 10})]結(jié)果應(yīng)該是一樣的,我不明白為什么不一樣。我已經(jīng)打印了 a 和 b 并確認(rèn)它們是正確的,但是索引一定有問(wèn)題,但我不確定它可能是什么。
查看完整描述

1 回答

?
Smart貓小萌

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

好像問(wèn)題就在這里:


sales = (0, 0, {'product_id':'','product_uom_qty':''}),

b = []

b.extend(sales*noi)

{'product_id':'','product_uom_qty':''}是一個(gè)對(duì)象,您不克隆它,只需以這種方式復(fù)制其引用即可。因此 for 循環(huán)在每次迭代時(shí)都會(huì)更改相同的實(shí)例。這就是為什么您在每個(gè)副本中都有最后一次迭代的結(jié)果。


快速解決:


b = [(0, 0, {'product_id':'','product_uom_qty':''}) for _ in range(noi)]

您的示例之所以有效,是因?yàn)槟@樣聲明它:


b = (0, 0, {'product_id': '', 'product_uom_qty': ''}), (0, 0, {'product_id': '', 'product_uom_qty': ''})

您初始化了兩個(gè)不同的對(duì)象,因此它按預(yù)期工作。


這是一個(gè)非常棘手的問(wèn)題,謝謝你的謎題:)


獎(jiǎng)勵(lì):如果你想證明它實(shí)際上是同一個(gè)對(duì)象,你可以將這段代碼粘貼到兩個(gè)片段中:


print(id(b[0][2]))

print(id(b[1][2]))


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

添加回答

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