Python Python中的模組的概念

2021-07-25 10:08:26 字數 809 閱讀 5918

模組可以是想象成python功能的擴充套件。需要使用特殊的命令import匯入。

例項:

floor是math模組中的,使用floor的例項如下:

>>>import math

>>>math.floor(4.5)

>>>4.0

格式:

「模組.函式」

在確定自己不會匯入多個同名的函式的時候(從不同的模組匯入)的情況下,我們可能希望不要每次都在用的函式的時候都寫上模組的名字。那麼可以用import的另一種形式:

例項:

>>> 

from math import sqrt

>>> sqrt(9)

>>>

3.0

格式:

from模組import函式」

可以使用變數來引用函式,例如,foo=math.sqrt進行賦值。

例項:

>>> 

import math

>>> foo = math.sqrt

>>> foo(9)

>>>

3.0

Python Python模組的標準檔案模板

usr bin env python3 coding utf 8 a test module author michael liao import sys deftest args sys.ar iflen args 1 print hello,world elif len args 2 print...

python python中的遍歷

遍歷list集合 infp 1,2,3,3,3 for m in infp print m 值得注意的是,m在此處的值是infp中的想對應的值,當我們通過del infp m 或者 infp.remove m 如下 infp 1,2,3,3,3 for m in infp if m is 3 pri...

python python中的urllib模組

import urllib.request response urllib.request.urlopen html response.read decode utf 8 print html 指定請求頭的方式 import urllib.request url headers request ur...