Python 第一章 基礎知識(7) 模組

2021-06-27 03:55:44 字數 395 閱讀 3227

模組,可以把模組想想成匯入到python以增強其功能的擴充套件。模組中可以定義很多類,很多物件,很多函式。

使用模組時,需要使用特殊的命令import來匯入模組。

>>> import math

>>> math.floor(32.9)

32.0

用import匯入了模組,然後按照「模組.函式」的格式來使用模組中的函式。

如果不希望在每次呼叫函式的時都寫模組的名字,那麼,可用使用import命令的另外一種形式:

>>> from math import sqrt

>>> sqrt(9)

3.0用「from 模組 import 函式」的格式,就可以直接使用函式,而不需要加模組名了。

注意: 使用這種形式要保證當前模組不會有同名的函式。

Python第一章基礎知識

python3.x 1 沒有了raw input,只有input 2 print是函式,要使用print 而不是print 3 所有的字串都是unicode字串 原始字串可以簡化反斜線的使用,以r開頭,在原始字串的結尾不能使用反斜線 第一章基礎知識 函式abs cmath.sqrt 返回平方根,也可...

Python 第一章 基礎知識

如果熟其他計算機語言,可能會習慣於每行以分號結束。python則不同,一行就是一行,不管多少。from future import division 1 2 0.51.4.1 長整型數 1.6 語句 1.7 獲取使用者輸入 input the meaning of life the meaning ...

Python第一章 基礎知識

加法 print 2 2 浮點數 print 1 2 丟棄小數部分,向下圓整 print 1 2 print 5.0 2.4 取餘x y 即為 x x y y print 10 3 print 2.75 0.5 print 10 3 print 10 3 乘方 print 2 3 print 3 2...