# Python學習筆記 ## 事前預備 ### 資源 - [Steam教學網](https://steam.oxxostudio.tw/category/python/index.html) - IDE - [Google Colab](https://colab.research.google.com/notebooks/welcome.ipynb?hl=zh_tw) - Anaconda Jupyter ### Python能做什麼? ![image](https://hackmd.io/_uploads/Hk47buDjT.png) ### 學習實作 #### 0218 - 安裝spyder - 簡單程式可以run ```python print("123") print("456") with open('../test3.txt', 'w') as f: f.write('Hello my Drive3!') ``` - 學習載入package前,先安裝choco跟python(我也不知道對不對) - try catch - 要秀出訊息就加入 except Exception as e: