--- tags: python --- # Python 基本運用 ### 變數寫法 ```python= data = 10 x = true ``` ### 可運用列表 > 類似js陣列 ```python= [ 23 , 8 , 19 , "我是布萊恩" ] ```