Python基礎學習(七) ------ 元組 / 列表

一.元組 叫作 tuple,用小括號、或者無括號來表述,是一連串有順序的數字。app a_tuple = (12, 3, 5, 15 , 6) another_tuple = 12, 3, 5, 15 , 6 二.列表 而list是以中括號來命名的:code a_list = [12, 3, 67, 7, 82] 遍歷示例: 他們的元素能夠一個一個地被迭代、輸出、運用、定位取值:索引 for co
相關文章
相關標籤/搜索