只在此山中,雲深不知處


聽首歌



© 2018 by Shawn Huang
Last Updated: 2018.5.27

資料結構 -- Tuple

頭前 轉厝 後壁

tupleName = tuple()
tupleName = ()

相加(+)

存取

複製與切片(slicing)

刪除(del)

因為tuple內容不可變更,所以無法刪除tuple內的資料

確認包含(in and not in)

Index() and count()

回傳超過一個值

轉換成list

與for loop連用