Python 學習筆記(五)常用函式

2022-07-19 22:51:31 字數 2388 閱讀 3274

python內建函式

四捨五入: round()

絕對值: abs()

1 >>> round(1.543,2)   保留兩位小數,四捨五入為1.54

2 1.54

3 >>> round(1.546,2) 保留兩位小數,四捨五入為1.55

4 1.55

5 >>> round(-1.536,2)

6 -1.54

7 >>> abs(5)

8 59 >>> abs(-5) 絕對值為5

10 5

math 模組 

1 >>> import

math 匯入math模組

2 >>>math.pi math的pi函式

3 3.141592653589793

4 >>>dir(math) 利用dir 檢視math中的函式

5 ['

__doc__

', '

__name__

', '

__package__

', '

acos

', '

acosh

', '

asin

', '

asinh

', '

atan

', '

atan2

', '

atanh

', '

ceil

', '

copysign

', '

cos', '

cosh

', '

degrees

', '

e', '

erf', '

erfc

', '

exp', '

expm1

', '

fabs

', '

factorial

', '

floor

', '

fmod

', '

frexp

', '

fsum

', '

gamma

', '

hypot

', '

isinf

', '

isnan

', '

ldexp

', '

lgamma

', '

log', '

log10

', '

log1p

', '

modf

', '

pi', '

pow', '

radians

', '

sin', '

sinh

', '

sqrt

', '

tan', '

tanh

', '

trunc']

6 >>>help(math.fabs) 利用help 檢視函式的詳細內容

7 help on built-in function fabs in

module math:89

fabs(...)

10fabs(x)

1112

return the absolute value of the float x. 返回浮點數x的絕對值

1314 >>>

>>> math.sqrt(9)  計算開平方

3.0>>> math.floor(3.14) 地板,將某乙個位置之後的全部取消掉

3.0>>> math.floor(3.66)

3.0>>> math.fabs(2) 計算絕對值

2.0>>> math.fmod(9,2) 計算餘數

1.0

解決浮點數運算問題decimal

1 >>> from decimal import

decimal 引入decimal 模組

2 >>> a = decimal("

0.1"

)3 >>> b = decimal("

0.8"

)4 >>> a +b

5 decimal('

0.9'

)6 >>> from decimal import

decimal as d as 別名

7 >>> a = d("

0.1"

)8 >>> b = d("

0.8"

)9 >>> a +b

10 decimal('

0.9'

)11 >>>

mysql學習筆記五(常用函式)

1日期函式 備註 插入時間的內容可以是字串,但是必須是日期格式 查詢最近兩個小時的內容 select from message where date add publishdate,interval 2 hour now 選擇了最近的 30天內所有帶有date col 值的記錄 mysql sele...

Redis 學習筆記五 常用php函式

redis new redis redis connect 127.0.0.1 6379 引數 connect host,port,timeout timeout可以為空,在redis.conf裡timeout預設300 pconnect不會主動關閉的連線 寫入值 redis set work ui...

Appium(五)常用方法

2 用法 1.self.driver.find element by id click 找到元素並點選 1.self.driver.find element by id text找到元素,獲取到當前元素的文字 1.self.driver.find element by id get attribut...