Pyhton學習筆記1

一、標準庫與擴展庫對象的導入與使用 import 模塊名 【as 別名】 例:import math #導入標準庫math math.sin(0,5) #求0.5的正弦 2.from 模塊名 import 對象名 【as 別名】 例 from math import sin sin(3) 3.from 模塊名 import * 例:from math import * #導入標準庫Math中所有對
相關文章
相關標籤/搜索