Python 氣泡排序 Bubble Sort By George 2019-04-27 2019-05-06 0 下文是維基百科對Bubble Sort的定義 『氣泡排序(英語:Bubble Sort)又稱為泡沫排 …
Python 費氏數列 Fibonacci sequence By George 2019-04-25 2019-04-25 0 費氏數列源起於 13 世紀義大利的數學家 Fibonacci,亦稱為黃金分割數列。其特性為 (n≧2 …
Python Python String Formatting, 字串格式化 By George 2019-03-29 2019-03-30 1 在 Python 中若要要求字串輸出格式時就必須使用字串的格式化,其方法有兩種:一種是以 % 來完成 …
Python Python 攝氏 華氏 溫度轉換(函數) By George 2019-01-21 2019-03-26 攝氏 °C (Celsius) 目前大多數的國家都使用的溫度單位。華氏 °F (Fahrenheit …
Python Python Function:BMI 指數 By George 2018-05-24 2018-05-24 BMI 指數-使用 Function 操作 def body_mass_index(h,w): h= …
Python Python Dict 字典 By George 2018-04-25 2018-05-03 Python Dictionary ( dict 字典) 是 python 的另一種陣列,和其它語 …
Python python List 陣列 By George 2017-12-20 2018-04-25 Python 的 『陣列』有幾種形式: List 這與其它程式的 array 很類似: my_lis …
Python python 質數- for,while,if By George 2017-12-01 2021-12-15 求 2 – 29 的質數 。質數: 除了 1 和本身外,沒有其它數可以整除利用 for …
Python python 99 乘法表 for / while By George 2017-11-27 2022-04-05 程式碼在 GitHub Python multiplication tables – u …