列表的遍歷 python語言

2021-10-19 13:19:43 字數 593 閱讀 6263

name_list = ["青牛精", "獅子精", "白骨精"]

# 需求:對列表進行遍歷,一次獲取列表中的每乙個資料

# for迴圈遍歷列表 *****===

for value in name_list:

print(value)

print("***************====")

# while迴圈遍歷列表

index = 0

# 獲取列表的中元素的個數,其實列表的長度

# result = len(name_list)

# print(result)

while index < len(name_list):

# 根據下標獲取對應的資料

data = name_list[index]

print(index, data)

index += 1

'''青牛精

獅子精白骨精

***************====

0 青牛精

1 獅子精

2 白骨精

程序已結束,退出**0

'''

Python 遍歷列表

假定有乙個列表的列表,內層列表的每個值都是包含乙個字元的字串,像這樣 grid o o o o o o o o o o o o o o o o o o o o o o o o o o o 你可以認為grid x y 是一幅 圖 在x y 座標處的字元,該圖由文字字元組 成。原點 0,0 在左上角,向...

Python 遍歷列表

遍歷列表,指的就是將列表中的所有元素取出來 建立列表 stus 孫悟空 豬八戒 沙和尚 唐僧 白骨精 蜘蛛精 遍歷列表 print stus 0 print stus 1 print stus 2 print stus 3 通過while迴圈來遍歷列表 i 0 while i len stus pr...

python 列表遍歷

python 列表遍歷 persons 張三 趙六 李四 王五 趙六 錢七 孫八 for 迭代變數 in 可迭代物件 for p in persons print p 遍歷出趙六的 正序索引 i 0 for p in persons if p 趙六 print p i i 1 獲取對應列表的長度 c...