一、Imports
1.Generic Imports
執行結果是 NameError: name 'sqrt' is not defined.
因為Python並不知道square(平方根)是什麼,所以module(模組)就很重要了
Module包含了變數和函式,而sqrt()是其中一個函式。如果要執行,需要import,稱為generic import
因此須將程式碼改成:
2.Function Imports
只需sqrt函數時程式碼應該為下:
3.Universal Imports
Import math模組的每個函式
雖然Universal imports看起來很方便,但實際上會產生一些問題,可能會和自己設定的函數產生衝突
因此最好 module.name
二、Pythoon裡的函式(built-in function)
1.max()
2.min()
3.abs() 絕對值
4.type()