Day 21_ 數值 (Numbers)- 顯式轉換 21-1. 浮點數輸出整數式子:int(1.2)結果:1 式子:int(-1.2)結果:-1 21-2....
Day 22_ 數值 (Numbers)- 分數 22-1. 分數表示式子:import fractions print(fractions.Fraction(...
Day 23_ 數值 (Numbers)- 數學 23-1. pi式子:import math print(math.pi)結果:3.1415926535897...
**Day 24_字串 (String) ** 24-1. 宣告24-1-1. 單引號式子:my_string = '''Hello '''print(my_s...
Day 25_字串 (String)函式1 25-1.轉成字串式子:x = 123print(type(x))print(str(x))print(type(s...
Day 26_字串 (String)函式2 26-1. 計算字串序列總長度式子:x = 'Hello'print(len(x))結果:5 26-2. 尋找最小的...
Day 27_布林 (Boolean) 27-1. x 是 True 時,bool() 會回傳 True式子:x = Trueprint(bool(x))pr...
Day 28_串列 (List)-建立、存取 28-1. 建立串列28-1-1. 空串列式子:my_list = []print(my_list)結果:[]...
Day 29_串列 (List)- 函式 29-1. 總長度式子:x = ['Red', 'Blue', 'Green']print (len(x))結果:3...
Day 30_串列 (List)- 方法 30-1. 附加一個元素到串列尾端式子:x = [1, 2, 3, 4]x.append(5)print (x)結果...