01.用 Python 批次修改資料夾內的所有照片檔名
https://xdasu.com/2018/06/28/%E7%94%A8- ... %E5%90%8D/
用Python擴充我的Scratch2 -- 原理與Hello World篇
http://beardad1975.blogspot.com/2015/08 ... basic.html
00-學習區
人工智慧大數據-電子書
人工智慧大數據-電子書
https://djangogirls.org/en/taipei/
學習區-001-互動模式-數字運算+字串
學習區-001-互動模式-數字運算+字串
1.數字運算
1.數字運算
練習題001>>> 2 + 3
5
2.字串(Strings)--->字串必須用單引號(')或是雙引號(")包起來4 * 5
40 / (7 - 3) * 2
2 ** 3
字串相連+ 重複字串*'I am a student'
>>> "Hello!" + " the world..."
'Hello! the world...'
>>> 'First' * 4
'FirstFirstFirstFirst'