[(s..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python中一個(gè)for循環(huán)循環(huán)多個(gè)變量的示例

發(fā)布時(shí)間:2020-09-13 01:15:02 來(lái)源:腳本之家 閱讀:644 作者:TheOneGIS 欄目:開發(fā)技術(shù)

首先,熟悉一個(gè)函數(shù)zip,如下是使用help(zip)對(duì)zip的解釋。

Help on built-in function zip in module __builtin__:

zip(...)

zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)]

Return a list of tuples, where each tuple contains the i-th element
from each of the argument sequences. The returned list is truncated
in length to the length of the shortest argument sequence.

看一個(gè)實(shí)例:

x = [1, 2, 3]
y = [-1, -2, -3] # y = [i * -1 for i in x]
zip(x, y)

zip的結(jié)果如下:

 [(1, -1), (2, -2), (3, -3)]

zip([seql, ...])接受一系列可迭代對(duì)象作為參數(shù),將對(duì)象中對(duì)應(yīng)的元素打包成一個(gè)個(gè)tuple(元組),然后返回由這些tuples組成的list(列表)。

進(jìn)入正題:如何使用一個(gè)for循環(huán)同時(shí)循環(huán)多個(gè)變量呢?使用tuple。如下,同時(shí)循環(huán)i和j變量。

for (i, j) in [(1, 2), (2, 3), (4, 5)]:
print(i, j)

輸出結(jié)果如下:

(1, 2)
(2, 3)
(4, 5)

所以我們?nèi)绻獙和y中的元素分別相加,則可以使用如下代碼:

for (i, j) in zip(x, y):
  print(i + j)

輸出結(jié)果:

0
0
0

以上這篇Python中一個(gè)for循環(huán)循環(huán)多個(gè)變量的示例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI