[Python] 使用 enumerate() 函式來同時輸出索引與元素
Last Updated on 2021-05-12 by Clay
enumerate()
是 Python 當中經常會看到的函式,其概念可說是非常簡單,就是 enumerate(iterable, start_index)
。前者輸入一個可迭代的對象、比如說 List 資料型態;後者輸入開始的起點編號,為數字,若不設定時從 0 開始。
Last Updated on 2021-05-12 by Clay
enumerate()
是 Python 當中經常會看到的函式,其概念可說是非常簡單,就是 enumerate(iterable, start_index)
。前者輸入一個可迭代的對象、比如說 List 資料型態;後者輸入開始的起點編號,為數字,若不設定時從 0 開始。
Last Updated on 2021-05-07 by Clay
現代人的各種電子娛樂很大程度上都離不開 YouTube,不論是追劇、學習、聽音樂 ...... 說 YouTube 是現代人最重要的網站也不為過。
Read More »[Python] 使用 pytube 套件下載 Youtube 影片Last Updated on 2021-05-12 by Clay
在 Ubuntu 當中,有些時候我們希望可以快速地執行檔案,可是碰到像是只提供 sh 執行檔的軟體時,我們常常只能選擇打開 Terminal 來執行該軟體。(例如著名 PyCharm 就是一例,據我所知在 Linux 上只能透過 sh 執行)
Read More »[Linux] 在 Ubuntu 當中雙擊執行 sh 檔、加入左側 Dock Bar