python基礎學習(八)

17.嵌套循環oop

# 嵌套循環 nested loop
# 在一個循環中使用另一個循環

num_list1 = [1, 2, 3, 4]
num_list2 = [6, 7, 8, 9]

# 組合list1和list2
# (1,6) (1,7) (1,8) (1,9)

# 第一次循環  1 , 2 ,3 ,4
for num1 in num_list1:
    # 第二次循環 1:6,7,8,9  跳出該循環 2:6,7,8,9 跳出該循環
    # 3:6,7,8,9 跳出該循環 4:6,7,8,9
    for num2 in num_list2:
        print(f'({num1},{num2})')

run結果:spa

18.二維列表code

# 維度 dimension
# 2D list
# dim

# 建立矩陣  m*n
matrix = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
]

# 訪問第一個列表元素
print(matrix[0])
# 訪問第二行 第三個元素 6
print(matrix[1][2])
# 更改第三行 第二個元素 8->18
matrix[2][1] = 18
print(matrix)

# 嵌套循環 列舉全部的元素
# 第一個迭代會成 [1, 2, 3], [4, 5, 6], [7, 18, 9]
for num1 in matrix:
    # 迭代 num1 裏面的 元素
    for num2 in num1:
        print(num2)

run結果:blog

相關文章
相關標籤/搜索