0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

Python中enumerate函數(shù)的解釋及可視化

電子設(shè)計(jì) ? 來源:電子設(shè)計(jì) ? 作者:電子設(shè)計(jì) ? 2020-12-10 19:40 ? 次閱讀

enumerate() 的作用

在許多情況下,我們需要在迭代數(shù)據(jù)對(duì)性(即我們可以循環(huán)的任何對(duì)象)時(shí)獲取元素的索引。實(shí)現(xiàn)預(yù)期結(jié)果的一種方法是:

animals = ['dog', 'cat', 'mouse']
for i in range(len(animals)):
    print(i, animals[i])

輸出:

0 dog
1 cat
2 mouse

大多數(shù)C ++ / Java背景的開發(fā)人員都可能會(huì)選擇上述實(shí)現(xiàn),通過索引迭代數(shù)據(jù)對(duì)象的長(zhǎng)度是他們熟悉的概念。但是,這種方法效率很低。
我們可以使用enumerate()來實(shí)現(xiàn):

for i, j in enumerate(example):
    print(i, j)

enumerate()提供了強(qiáng)大的功能,例如,當(dāng)您需要獲取索引列表時(shí),它會(huì)派上用場(chǎng):

(0, seq[0]), (1, seq[1]), (2, seq[2]), ...

案例研究1:枚舉字符串

字符串只是一個(gè)列表

為了更好地理解字符串枚舉,我們可以將給定的字符串想象為單個(gè)字符(項(xiàng))的集合。因此,枚舉字符串將為我們提供:

1.字符的索引。
2.字符的值。

word = "Speed"
for index, char in enumerate(word):
    print(f"The index is '{index}' and the character value is '{char}'")

輸出:

The index is '0' and the character value is 'S'
The index is '1' and the character value is 'p'
The index is '2' and the character value is 'e'
The index is '3' and the character value is 'e'
The index is '4' and the character value is 'd'

案例研究2:列舉列表

那么,我們應(yīng)該如何列舉一個(gè)列表呢?為了做到這一點(diǎn),我們可以利用for循環(huán)并遍歷每個(gè)項(xiàng)目的索引和值:

sports = ['soccer', 'basketball', 't`  ennis']
for index, value in enumerate(sports):
    print(f"The item's index is {index} and its value is '{value}'")

輸出:

The item's index is 0 and its value is 'soccer'
The item's index is 1 and its value is 'basketball'
The item's index is 2 and its value is 'tennis'

案例研究3:自定義起始索引

我們可以看到枚舉從索引0開始,但是們經(jīng)常需要更改起始位置,以實(shí)現(xiàn)更多的可定制性。值得慶幸的是,enumerate()還帶有一個(gè)可選參數(shù)[start]

enumerate(iterable, start=0)

可以用來指示索引的起始位置,方法如下:

students = ['John', 'Jane', 'J-Bot 137']
for index, item in enumerate(students, start=1):
    print(f"The index is {index} and the list element is '{item}'")

輸出

The index is 1 and the list element is 'John'
The index is 2 and the list element is 'Jane'
The index is 3 and the list element is 'J-Bot 137'

現(xiàn)在,修改上述代碼:1.起始索引可以為負(fù);2.省略start=則默認(rèn)從0索引位置開始。

teachers = ['Mary', 'Mark', 'Merlin']
for index, item in enumerate(teachers, -5):
    print(f"The index is {index} and the list element is '{item}'")

輸出將是:

The index is -5 and the list element is 'Mary'
The index is -4 and the list element is 'Mark'
The index is -3 and the list element is 'Merlin'

案例研究4:枚舉元組

使用枚舉元組遵循與枚舉列表相同的邏輯:

colors = ('red', 'green', 'blue')
for index, value in enumerate(colors):
    print(f"The item's index is {index} and its value is '{value}'")

輸出:

The item's index is 0 and its value is 'red'
The item's index is 1 and its value is 'green'
The item's index is 2 and its value is 'blue'

案例研究5:枚舉列表中的元組

讓我們提高一個(gè)檔次,將多個(gè)元組合并到一個(gè)列表中……我們要枚舉此元組列表。一種做法的代碼如下:

letters = [('a', 'A'), ('b', 'B'), ('c', 'C')]
for index, value in enumerate(letters):
    lowercase = value[0]
    uppercase = value[1]
    print(f"Index '{index}' refers to the letters '{lowercase}' and '{uppercase}'")

但是,元組拆包被證明是一種更有效的方法。比如:

letters = [('a', 'A'), ('b', 'B'), ('c', 'C')]
for i, (lowercase, uppercase) in enumerate(letters):
    print(f"Index '{i}' refers to the letters '{lowercase}' and '{uppercase}'")

輸出:

Index '0' refers to the letters 'a' and 'A'
Index '1' refers to the letters 'b' and 'B'
Index '2' refers to the letters 'c' and 'C'

案例研究6:枚舉字典

枚舉字典似乎類似于枚舉字符串或列表,但事實(shí)并非如此,主要區(qū)別在于它們的順序結(jié)構(gòu),即特定數(shù)據(jù)結(jié)構(gòu)中元素的排序方式。

字典有些隨意,因?yàn)樗鼈兊捻?xiàng)的順序是不可預(yù)測(cè)的。如果我們創(chuàng)建字典并打印它,我們將得到一種結(jié)果:

translation = {'one': 'uno', 'two': 'dos', 'three': 'tres'}
print(translation)
# Output on our computer: {'one': 'uno', 'two': 'dos', 'three': 'tres'}

但是,如果打印此詞典,則順序可能會(huì)有所不同!

由于索引無法訪問字典項(xiàng),因此我們必須利用for循環(huán)來迭代字典的鍵和值。該key — value對(duì)稱為item,因此我們可以使用.items()方法:

animals = {'cat': 3, 'dog': 6, 'bird': 9}
for key, value in animals.items():
    print(key, value)

輸出將是:

cat 3
dog 6
bird 9

本文由博客一文多發(fā)平臺(tái) OpenWrite 發(fā)布!

審核編輯 黃昊宇
聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 機(jī)器學(xué)習(xí)

    關(guān)注

    66

    文章

    8434

    瀏覽量

    132865
  • python
    +關(guān)注

    關(guān)注

    56

    文章

    4804

    瀏覽量

    84903
  • 深度學(xué)習(xí)
    +關(guān)注

    關(guān)注

    73

    文章

    5511

    瀏覽量

    121363
收藏 人收藏

    評(píng)論

    相關(guān)推薦

    數(shù)據(jù)可視化Python-matplotlib概述

    數(shù)據(jù)可視化(二):Python-matplotlib
    發(fā)表于 07-22 14:58

    如何把AD中非可視化區(qū)域物件移到可視化區(qū)域?

    AD中非可視化區(qū)域物件怎么移到可視化區(qū)域???
    發(fā)表于 09-10 05:36

    python數(shù)據(jù)可視化的方法和代碼

    Python數(shù)據(jù)可視化匯總
    發(fā)表于 10-14 14:59

    Python數(shù)據(jù)可視化專家的七個(gè)秘密

    分享 Python數(shù)據(jù)可視化專家的七個(gè)秘密
    發(fā)表于 05-15 06:43

    python數(shù)據(jù)可視化之畫折線圖

    python數(shù)據(jù)可視化之畫折線圖,散點(diǎn)圖
    發(fā)表于 05-27 08:09

    Python數(shù)據(jù)可視化

    Python數(shù)據(jù)可視化:網(wǎng)易云音樂歌單
    發(fā)表于 07-19 08:30

    三維可視化的應(yīng)用和優(yōu)勢(shì)

    ,為此三維可視化運(yùn)維系統(tǒng)登場(chǎng)了?! ∪S可視化的應(yīng)用  宏觀場(chǎng)景可視化:在特定的環(huán)境對(duì)隨著時(shí)間推移而不斷變化的目標(biāo)實(shí)體進(jìn)行檢測(cè),可以直觀、靈活、逼真的展示所處區(qū)域的情景和環(huán)境,可以快
    發(fā)表于 12-02 11:52

    函數(shù)可視化與Matlab作

    函數(shù)可視化與Matlab作2.1 實(shí)驗(yàn)與觀察:函數(shù)可視化2.1.1 Matlab二維繪圖命令1.周期函數(shù)與線性p-周期
    發(fā)表于 10-17 00:30 ?2234次閱讀
    <b class='flag-5'>函數(shù)</b>的<b class='flag-5'>可視化</b>與Matlab作

    可視化技術(shù)有哪些

    完整的地理空間信息可視化概念主要包括科學(xué)計(jì)算可視化、數(shù)據(jù)可視化和信息可視化。可視化技術(shù)作為解釋
    發(fā)表于 02-05 09:09 ?3769次閱讀

    Python拉勾網(wǎng)數(shù)據(jù)采集與可視化

    本文是先采集拉勾網(wǎng)上面的數(shù)據(jù),采集的是Python崗位的數(shù)據(jù),然后用Python進(jìn)行可視化。主要涉及的是爬蟲&數(shù)據(jù)可視化的知識(shí)。
    的頭像 發(fā)表于 03-13 14:18 ?3283次閱讀
    <b class='flag-5'>Python</b>拉勾網(wǎng)數(shù)據(jù)采集與<b class='flag-5'>可視化</b>

    使用Python可視化數(shù)據(jù),機(jī)器人開發(fā)編程

    機(jī)器學(xué)習(xí)開發(fā),與Mail.Ru Search數(shù)據(jù)分析負(fù)責(zé)人Egor Polusmak和Mail.Ru Group數(shù)據(jù)科學(xué)家Yury Kashnitsky一起探索如何使用Python可視化數(shù)據(jù)。在機(jī)器學(xué)習(xí)領(lǐng)域中,可視化并不僅僅用來
    的頭像 發(fā)表于 03-15 16:56 ?9036次閱讀

    Python數(shù)據(jù)可視化編程實(shí)戰(zhàn)

    Python數(shù)據(jù)可視化編程實(shí)戰(zhàn)資料免費(fèi)下載。
    發(fā)表于 06-01 14:37 ?29次下載

    使用arduino和python可視化你的比特幣收益和損失

    電子發(fā)燒友網(wǎng)站提供《使用arduino和python可視化你的比特幣收益和損失.zip》資料免費(fèi)下載
    發(fā)表于 12-21 16:50 ?0次下載
    使用arduino和<b class='flag-5'>python</b><b class='flag-5'>可視化</b>你的比特幣收益和損失

    使用Python來收集、處理和可視化人口數(shù)據(jù)

    如何使用Python這一流行的編程語(yǔ)言來收集、處理和可視化印度和中國(guó)的人口數(shù)據(jù)呢?本文將向你介紹一些基本的步驟和技巧,幫助你掌握Python進(jìn)行可視化分析的方法。我們將使用以下幾個(gè)庫(kù)來
    的頭像 發(fā)表于 06-21 17:08 ?1444次閱讀
    使用<b class='flag-5'>Python</b>來收集、處理和<b class='flag-5'>可視化</b>人口數(shù)據(jù)

    Python 可視化如何配色

    我們?cè)诶?b class='flag-5'>Python進(jìn)行數(shù)據(jù)可視化時(shí),有著大量的高質(zhì)量庫(kù)可以用,比如: Matplotlib 、 seaborn 、 Plotly 、 Bokeh 、 ggplot 等等。但圖表好不好看,配色占
    的頭像 發(fā)表于 10-30 15:43 ?544次閱讀
    <b class='flag-5'>Python</b> <b class='flag-5'>可視化</b>如何配色