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

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

在 Python 中創(chuàng)建一個(gè)包含兩個(gè)變量的循環(huán),其中一個(gè)變量?jī)H在每第 n 次循環(huán)后發(fā)生變化

在 Python 中創(chuàng)建一個(gè)包含兩個(gè)變量的循環(huán),其中一個(gè)變量?jī)H在每第 n 次循環(huán)后發(fā)生變化

幕布斯7119047 2023-06-06 15:04:27
我正在嘗試編寫(xiě)一個(gè)程序,其中有兩個(gè)列表和一個(gè)字典:dict = {'fruit1' : 'apple', 'fruit2' :'banana', 'fruit3':'cherry' ....and so on} list1 = ['a','b','c','d','e'....]list2 = ['fruit1', 'fruit2','fruit3'....]我有一個(gè)看起來(lái)像這樣的程序。[這根本不對(duì),但它有助于代表我想要得到的結(jié)果]。for obj1 in list1:    for obj_2 in list2:        print(obj1)        print(obj_2)        print(dict[obj_2])我的需要是以每第n個(gè)循環(huán)改變一次obj_2但obj_1改變每個(gè)循環(huán)的方式循環(huán)它。我怎樣才能做到這一點(diǎn)?所以我的結(jié)果看起來(lái)像(考慮第 n 個(gè)循環(huán)是第 3 個(gè)循環(huán)):afruit1applebfruit1applecfruit1appledfruit2bananaefruit2bananaffruit2bananagfruit3cherry...
查看完整描述

2 回答

?
慕田峪9158850

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

使用計(jì)數(shù)器變量而不是嵌套循環(huán)。每次通過(guò)循環(huán)增加計(jì)數(shù)器,當(dāng)它到達(dá)時(shí)n將其包裝回0并將索引增加到list2.


n = 3

list2_index = 0

counter = 0

for obj1 in list1:

    obj_2 = list2[list2_index]

    print(obj1)

    print(obj_2)

    print(dict[obj_2])

    counter += 1

    if counter == n:

        counter = 0

        list2_index += 1

順便說(shuō)一句,不要用作dict變量名,它是內(nèi)置類型的名稱。


查看完整回答
反對(duì) 回復(fù) 2023-06-06
?
紫衣仙女

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

因此,您要做的就是更改兩個(gè) for 循環(huán)的位置。


#BTW it isn't adviced to use reserved keywords for variable names so dont use Dict for a variable name

myDict = {'fruit1' : 'apple', 'fruit2' :'banana', 'fruit3':'cherry'}?

list1 = ['a','b','c','d','e']

list2 = ['fruit1', 'fruit2','fruit3']


#so in this nested loop obj2 only changs after? the n loops (n being the length of list1)

#which is after list1 is complete and it does that over and over?

#until list2 is complete

for obj2 in list2:

? ? for obj1 in list1:

? ? ? ? print(obj1)

? ? ? ? print(obj2)

? ? ? ? print(myDict[obj2])

如果這就是您的意思,那么這里是另一段代碼。


myDict = {'fruit1' : 'apple', 'fruit2' :'banana', 'fruit3':'cherry'}?

list1 = ['a','b','c','d','e']

list2 = ['fruit1', 'fruit2','fruit3']


#a variable to keep track of the nth loop

nthLoop = 1?

for obj2 in list2:

? ? for obj1 in list1:

? ? ? ? #if you print for three times which is what you wanted for your nthloop to be?

? ? ? ? #then break, which will break out of this nested loop allowing to only print 3 times and also set the?

? ? ? ? #nthLoop back to zero so that it will work nicely for the next iteration

? ? ? ? if nthLoop > 3:

? ? ? ? ? ? nthLoop = 0

? ? ? ? ? ? break

? ? ? ? print(obj1)

? ? ? ? print(obj2)

? ? ? ? print(myDict[obj2])

? ? ? ? nthLoop += 1


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

添加回答

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