Python – decimal 模組教學 – 四捨五入的正確作法
簡介 一個 python 的 float 是二進位的浮點數(binary floation-point num... » read more
簡介 一個 python 的 float 是二進位的浮點數(binary floation-point num... » read more
「四捨五入」是約整 (Rounding)的一種方式,在 python 的內建函數中,有一個 round 函數來... » read more
基本知識 Selenium 安裝 在 Python 3.7 後,如果不指定 selenium 版本,預設會安裝... » read more
單元測試 (unit test) 概述 Python 上的 unittest 模組主要包括四個部份: 測試案例... » read more
資料結構的 80 / 20 法則 串列(list)、字典(dictionary)、集合(set)、元組(tup... » read more
準備開發環境 1、安裝 Python 3 執行環境 請參考 「python – python 3 執行環境安裝... » read more
在寫 GUI 程式時,有時需要打開特定的檔案總管視窗,讓使用者把檔案放進去。 import subproces... » read more
模組的安裝 在 windows 的「文字介面」中輸入 pip 指令 # usage: pip install ... » read more
函式(function)的建立,主要是為了程式碼的重用;而重用程式碼則是建構可維護系統的關鍵。 函式的語法結構... » read more
PyCharm 簡介 PyCharm 是由 JetBrains 這家公司所開發的 IDE。 JetBrains... » read more