# wk01_0903_課程介紹 1. e-learning - 互動區 - 評量區 - 資訊區 2. 配分 1. 點名 2. 問筆記 3. 小考 4. 期末專題 3. 工具 - Anaconda - hackMD ## Inclass practice ### Code cell ```python x = 1 + 2 y = round(12.345, 1) print(x, y) ``` 3 12.3 ### Markdown cell #### 白日依山盡 #### 黃河入海流 ## self practice ```python print('hello world') ``` hello world ## afterclass practice ```python print('enter degree celsius:') c=input() print(float(c)*1.8+32) ``` enter degree celsius: 100 212.0 ```python ```