1 頁 (共 1 頁)

00-學習區

發表於 : 2018年 10月 28日, 03:17
cajhbb
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

人工智慧大數據-電子書

發表於 : 2018年 12月 2日, 03:47
cajhbb
人工智慧大數據-電子書
2018-12-02_114830.png
2018-12-02_114830.png (8.22 KiB) 已瀏覽 897 次
Aweb.pdf
(64.34 MiB) 已下載 26 次
database.pdf
(10.29 MiB) 已下載 23 次
Python.pdf
(5.87 MiB) 已下載 25 次
Python-windows-machineLearning.pdf
(6.4 MiB) 已下載 24 次
TensorFlow_All.pdf
(10.52 MiB) 已下載 25 次
https://djangogirls.org/en/taipei/

學習區-001-互動模式-數字運算+字串

發表於 : 2021年 11月 16日, 03:05
cajhbb
學習區-001-互動模式-數字運算+字串
1.數字運算
>>> 2 + 3
5
練習題001
4 * 5
40 / (7 - 3) * 2
2 ** 3
2.字串(Strings)--->字串必須用單引號(')或是雙引號(")包起來
'I am a student'
字串相連+ 重複字串*
>>> "Hello!" + " the world..."
'Hello! the world...'
>>> 'First' * 4
'FirstFirstFirstFirst'