Day 1_敘述(Statement) 1-1. print式子:a = 10print(a)結果:10 1-2. if式子:a = 1if a == 1:pr...
Day 2_多行敘述(Multi-line statement) **2-1. \ **式子:a = 1 + 2 + 3 + 4 + 5 + 6 + 7 +...
Day 3_縮排(Indentation) 3-1. 沒有縮排時會出現錯誤式子:for x in [1, 2, 3]:x = x 2print('x =',...
Day 4_註解(Comments)+多行註解(Multi-line Comments) 4-1. 註解(Comments)式子:#這是一個螢幕輸出 Hello...
Day 5_變數(Variables) 5-1. 宣告一個整數變數並且指派值式子:number = 10print(number)結果:10 5-2. 宣告一個...
Day 6_關鍵字(Keywords) 6-1. 查看最新關鍵字清單式子:import keywordprint(keyword.kwlist)結果:['Fal...
Day 7_資料型態(Data Types)-數字 (Numbers) 7-1. 整數式子:a = 1print(type(a))結果:<class 'i...
Day 8_資料型態(Data Types)- 字串 (Strings) 8-1. ‘’式子:s1 = 'Hello!'print(s1)print(type(...
Day 9_資料型態(Data Types)- 布林 (Boolean)、串列 (Lists) 9-1. 布林式子:x = Truey = False prin...
Day 10_資料型態(Data Types)- 元組 (Tuples)、集合 (Sets) 、字典 (Dictionary) 10-1. 元組型態式子:t =...