91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中怎樣操作列表

發布時間:2021-08-26 10:55:15 來源:億速云 閱讀:98 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關Python中怎樣操作列表的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1.遍歷列表

需要對列表中的每個元素都執行相同的操作時,可使用for 循環:

magicians = ['alice','david','carolina']
for magician in magicians:
  print(magician)
>>>alice
>>>david
>>>carolina

 循環中,Python將首先讀取其中的第一行代碼:

for magician in magicians:

這行代碼讓Python獲取列表magicians 中的第一個值('alice' ),并將其存儲到變量magician 中。接下來,Python讀取下一行代碼:

print(magician)

它讓Python打印magician 的值——依然是'alice' 。鑒于該列表還包含其他值,Python返回到循環的第一行:

for magician in magicians:

Python獲取列表中的下一個名字——'david' ,并將其存儲到變量magician 中,再執行下面這行代碼: 

print(magician)

以此類推,直至列表的最后一個元素。

對列表中的每個元素,都將執行循環指定的步驟,而不管列表包含多少個元素。如果列表包含一百萬個元素,Python就重復執行指定的步驟一百萬次,且通常速度非常快。 使用for 循環處理數據是一種對數據集執行整體操作的不錯的方式。

2.避免縮進錯誤,Python根據縮進來判斷代碼行與前一個代碼行的關系

2.1未縮進:

magicians = ['alice','david','carolina']
for magician in magicians:
print(magician)
IndentationError: expected an indented block

2.2循環后的冒號

 for 語句末尾的冒號告訴Python,下一行是循環的第一行。如果你不小心遺漏了冒號,將導致語法錯誤。

3.創建數值列表

3.1函數range()

for value in range(1,5):
  print(value)
>>>1
>>>2
>>>3
>>>4

函數range()讓Python從你指定的第一個值開始數,在到達你指定的第二個值后停止,因此輸出并不包含第二值。

3.2使用range()創建數字列表

將range() 作為list() 的參數,輸出將為一個數字列表。

numbers = list(range(1,6))
print(numbers)
>>>[1, 2, 3, 4, 5]

range()函數還可指定步長:

even_numbers = list(range(1,13,2))
print(even_numbers)
>>>[1, 3, 5, 7, 9, 11]

函數range() 從1開始數,然后不斷地加2,直到達到或超過終值。

使用函數range() 幾乎能夠創建任何需要的數字集。

squares = []
for value in range(1,11):
  squares.append(value**2)
print(squares)
>>>[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

4.列表解析

列表解析將for 循環和創建新元素的代碼合并成一行,并自動附加新元素:

squares = [value**2 for value in range(1,11)]
print(squares)
>>>[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

首先,指定一個描述性的列表名,如squares。然后指定一個左方括號,并定義一個表達式,用于生成你要存儲到列表中的值。在這個示例中,表達式為value**2 ,它計算平方值。接下來,編寫一個for 循環,用于給表達式提供值,再加上右方括號。在這個示例中,for 循環為for value in range(1,11) ,它將值1~10提供給表達式value**2 。請注意,這里的for 語句末尾沒有冒號。

5.列表切片(處理部分列表元素)

與range()一樣,指定要使用的第一個元素和最后一個元素的索引,到達指定的第二個索引值前面的元素后停止。

players = ['charles','martina','michael','florence','eli']
print(players[0:3])
>>>['charles', 'martina', 'michael']

未指定起始索引及終止索引的情況: 

players = ['charles','martina','michael','florence','eli']
print(players[:4])
>>>['charles', 'martina', 'michael', 'florence']
players = ['charles','martina','michael','florence','eli']
print(players[1:])
>>>['martina', 'michael', 'florence', 'eli']
players = ['charles','martina','michael','florence','eli']
print(players[-3:])
>>>['michael', 'florence', 'eli']

6.遍歷切片

要遍歷列表的部分元素,可在for 循環中使用切片。

players = ['charles','martina','michael','florence','eli']
print("Here are the first three players in my team:")
for player in players[0:3]:
  print(player.title())
>>>Here are the first three players in my team:
>>>Charles
>>>Martina
>>>Michael

處理數據時,可使用切片來進行批量處理;編寫Web應用程序時,可使用切片來分頁顯示信息。

7.復制列表

要復制列表,可創建一個包含整個列表的切片,方法是同時省略起始索引和終止索引([:] )。

my_foods = ['pizza','falafel','carrot cake']
friend_foods = my_foods[:]
 
print(my_foods)
print(friend_foods)
>>>['pizza', 'falafel', 'carrot cake']
>>>['pizza', 'falafel', 'carrot cake']
my_foods = ['pizza','falafel','carrot cake']
# friend_foods和my_foods指向同一個列表
friend_foods = my_foods
my_foods.append('cannoli')
friend_foods.append('ice cream')
print(my_foods)
print(friend_foods)
>>>['pizza', 'falafel', 'carrot cake', 'cannoli', 'ice cream']
>>>['pizza', 'falafel', 'carrot cake', 'cannoli', 'ice cream']

8.元組

列表是可以修改的,然而,需要創建一系列不可修改的元素,元組可以滿足這種需求。不可變的列表被稱為元組 。

元組看起來猶如列表,但使用圓括號而不是方括號來標識。

dimensions = (200,50)
print(dimensions[0])
print(dimensions[1])
>>>200
>>>50

元組元素不可更改: 

dimensions = (200,50)
dimensions[0] = 230
 
>>>dimensions[0] = 230
>>>TypeError: 'tuple' object does not support item assignment

8.1 for 循環遍歷元組

dimensions = (200,50,100)
for dimension in dimensions:
  print(dimension)
>>>200
>>>50
>>>100

8.2修改元組變量

元組元素不可更改,但可給存儲元組的變量賦值。

dimensions = (200,50,100)
for dimension in dimensions:
  print(dimension)
 
dimensions = (50,40,30)
for dimension in dimensions:
  print(dimension)
>>>200
>>>50
>>>100
>>>50
>>>40
>>>30

相比于列表,元組是更簡單的數據結構。如果需要存儲的一組值在程序的整個生命周期內都不變,可使用元組。

感謝各位的閱讀!關于“Python中怎樣操作列表”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

日土县| 保靖县| 广平县| 津市市| 稻城县| 珠海市| 根河市| 澄江县| 景德镇市| 集安市| 宜君县| 靖江市| 和林格尔县| 秭归县| 阿克| 汝州市| 五家渠市| 永修县| 湘乡市| 景洪市| 定西市| 文化| 富源县| 乌兰县| 米林县| 贡山| 剑河县| 清镇市| 蓝山县| 张家港市| 平利县| 天等县| 慈溪市| 阿图什市| 彩票| 公安县| 赞皇县| 黄梅县| 天镇县| 宁都县| 澄江县|