本篇內(nèi)容主要講解“Python數(shù)字類型有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Python數(shù)字類型有哪些”吧!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供莘縣網(wǎng)站建設(shè)、莘縣做網(wǎng)站、莘縣網(wǎng)站設(shè)計(jì)、莘縣網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、莘縣企業(yè)網(wǎng)站模板建站服務(wù),十多年莘縣做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
Python中數(shù)字類型包括:
整數(shù)
浮點(diǎn)數(shù)
復(fù)數(shù)
固定精度的十進(jìn)制數(shù)
有理分?jǐn)?shù)
集合
布爾類型
無窮的整數(shù)精度
各種數(shù)字內(nèi)置函數(shù)和模塊
表達(dá)式操作符:
操作符 | 描述 |
---|---|
yield | 生成器函數(shù)發(fā)送協(xié)議 |
lambda args:expression | 生成匿名函數(shù) |
x if y else z | 三元表達(dá)式 |
x or y | 邏輯或(存在短路算法) |
x and y | 邏輯與(存在短路算法) |
not x | 邏輯非 |
x in y , x not in y | 成員關(guān)系 |
x is y ,x is not y | 對(duì)象實(shí)體測(cè)試 |
x<y,x<=y,x>y,x>=y,x==y,x!=y | 比較大小 |
x|y | 位或,集合并集 |
x^y | 位異或,集合對(duì)稱差 |
x&y | 位與,集合交集 |
x<<y,x>>y | 左移或者右移y位 |
x+y,x-y | 加減法、合并刪除 |
x*y,x%y,x/y,x//y | 乘,取余數(shù),除,地板除 |
-x,+x | 一元減法 |
~x | 按位求補(bǔ)(取反) |
x**y | 冪運(yùn)算 |
x[i] | 索引,函數(shù)調(diào)用 |
x[i:j:k] | 分片 |
x(...) | 調(diào)用函數(shù) |
x.attr | 調(diào)用屬性 |
() | 元組,表達(dá)式,生成器 |
[] | 列表,列表解析 |
{} | 字典,集合,集合和字典解析 |
內(nèi)置數(shù)學(xué)函數(shù)
math
函數(shù)|常量 | 說明 | 實(shí)例 |
---|---|---|
e | 自然常數(shù)e | math.e 2.718281828459045 |
inf | 默認(rèn)值:inf | |
nan | 默認(rèn)值:nan | |
pi | 圓周率π | math.pi 3.141592653589793 |
tau | 6.283185307179586 | |
acos(x) | 返回x的反三角余弦值 | math.acos(math.sqrt(2)/2) 0.7853981633974483 |
acosh(x) | 返回x的反雙曲余弦函數(shù) | |
asin(x) | 返回x的反三角正弦值 | math.asin(0.5) 0.5235987755982989 |
asinh(x) | 返回x的反雙曲正弦函數(shù) | |
atan(x) | 返回x的反三角正切值 | math.atan(1.7320508075688767) 1.0471975511965976 |
atan2(y, x) | 返回x/y的反三角正切值 | math.atan2(2,1) 1.1071487177940904 |
atanh(x) | 返回x的反雙曲正切函數(shù) | |
ceil(x) | 這個(gè)方法對(duì)i向上取整 | math.ceil(5.2) 6.0 |
copysign(x, y) | 若y<0,返回-1乘以x的絕對(duì)值; 否則,返回x的絕對(duì)值 | math.copysign(5.2, -1) -5.2 |
cos(x) | 返回x(弧度)的三角余弦值 | math.cos(math.radians(45)) 0.7071067811865476 |
cosh(x) | 返回x的雙曲余弦函數(shù) | |
degrees(x) | 弧度轉(zhuǎn)度 | math.degrees(math.pi) 180.0 |
erf(x) | 返回x的誤差函數(shù) | |
erfc(x) | 返回x的余誤差函數(shù) | |
exp(x) | 返回e的x次方 | math.exp(2) 7.38905609893065 |
expm1(x) | 返回e的x次方減1 | math.expm1(2) 6.38905609893065 |
fabs(x) | 返回x的絕對(duì)值 | math.fabs(-5) 5.0 |
factorial(x) | 返回x的階乘 | math.factorial(5) 120 |
floor(x) | 向下取整。 | math.floor(5.8) 5.0 |
fmod(x, y) | 返回x%y(取余) | math.fmod(5,2) 1.0 |
frexp(x) | 返回m和i,滿足m乘以2的i次方 | math.frexp(3) (0.75, 2) |
fsum(iterable) | 返回?zé)o損精度的和 | |
gamma(x) | 返回x的伽瑪函數(shù) | |
hypot(x, y) | 返回以x和y為直角邊的斜邊長(zhǎng) | math.hypot(3,4) 5.0 |
isinf(x) | 若x為無窮大,返回True;否則,返回False | |
isnan(x) | 若x不是數(shù)字,返回True;否則,返回False | math.isnan(1.2e3) False |
ldexp(x, i) | 返回x乘以2的i次方 | math.ldexp(0.75, 2) 3.0 |
lgamma(x) | 返回x的絕對(duì)值的自然對(duì)數(shù)的伽瑪函數(shù) | |
log(x, base=None) | 返回x的以base為底的對(duì)數(shù),base默認(rèn)為e | |
log10(x) | 返回x的以10為底的對(duì)數(shù) | math.log10(2) 0.30102999566398114 |
log1p(x) | 返回1+x的自然對(duì)數(shù)(以e為底) | math.log1p(math.e-1) 1.0 |
log2(x) | ||
modf(x) | 返回x的小數(shù)和整數(shù) | math.modf(5.2) (0.20000000000000018, 5.0) |
pow(x, y) | 返回x的y次方 | math.pow(5,3) 125.0 |
radians(x) | 度轉(zhuǎn)弧度 | math.radians(45) 0.7853981633974483 |
sin(x) | 返回x(弧度)的三角正弦值 | math.sin(math.radians(30)) 0.49999999999999994 |
sinh(x) | 返回x的雙曲正弦函數(shù) | |
sqrt(x) | 返回x的平方根 | math.sqrt(3) 1.7320508075688772 |
tan(x) | 返回x(弧度)的三角正切值 | math.tan(math.radians(60)) 1.7320508075688767 |
tanh(x) | 返回x的雙曲正切函數(shù) | |
trunc(x) | 返回x的整數(shù)部分 | math.trunc(5.8) 5 |
math.log(math.e)
1.0
math.log(2, 10)
0.30102999566398114
math.isinf(1.0e+308)
False
math.isinf(1.0e+309)
True
0.1+0.2+0.3
0.6000000000000001
math.fsum([0.1, 0.2, 0.3])
0.6
random
函數(shù)|常量 | 說明 | 實(shí)例 |
---|---|---|
random | 用于生成一個(gè)0到1的隨機(jī)符點(diǎn)數(shù): 0 <= n < 1.0 | |
uniform | random.uniform的函數(shù)原型為:random.uniform(a, b),用于生成一個(gè)指定范圍內(nèi)的隨機(jī)符點(diǎn)數(shù),兩個(gè)參數(shù)其中一個(gè)是上限,一個(gè)是下限。如果a > b,則生成的隨機(jī)數(shù)n: a <= n <= b。如果 a <b, 則 b <= n <= a。 | print random.uniform(10, 20) print random.uniform(20, 10) #---- 結(jié)果(不同機(jī)器上的結(jié)果不一樣) #18.7356606526 #12.5798298022 |
randint | random.randint()的函數(shù)原型為:random.randint(a, b),用于生成一個(gè)指定范圍內(nèi)的整數(shù)。其中參數(shù)a是下限,參數(shù)b是上限,生成的隨機(jī)數(shù)n: a <= n <= b | print random.randint(12, 20) #生成的隨機(jī)數(shù)n: 12 <= n <= 20 print random.randint(20, 20) #結(jié)果永遠(yuǎn)是20 #print random.randint(20, 10) #該語(yǔ)句是錯(cuò)誤的。下限必須小于上限。 |
randrange | random.randrange的函數(shù)原型為:random.randrange([start], stop[, step]),從指定范圍內(nèi),按指定基數(shù)遞增的集合中 獲取一個(gè)隨機(jī)數(shù)。 | random.randrange(10, 100, 2) 結(jié)果相當(dāng)于從[10, 12, 14, 16, ... 96, 98]序列中獲取一個(gè)隨機(jī)數(shù)。 在結(jié)果上與 random.choice(range(10, 100, 2) 等效。 |
choice | random.choice從序列中獲取一個(gè)隨機(jī)元素。其函數(shù)原型為:random.choice(sequence)。參數(shù)sequence表示一個(gè)有序類型。這里要說明 一下:sequence在python不是一種特定的類型,而是泛指一系列的類型。list, tuple, 字符串都屬于sequence。 | print random.choice("學(xué)習(xí)Python") print random.choice(["JGood", "is", "a", "handsome", "boy"]) print random.choice(("Tuple", "List", "Dict")) |
shuffle | random.shuffle的函數(shù)原型為:random.shuffle(x[, random]),用于將一個(gè)列表中的元素打亂。 | p = ["Python", "is", "powerful", "simple", "and so on..."] random.shuffle(p) print p #---- 結(jié)果(不同機(jī)器上的結(jié)果可能不一樣。) #['powerful', 'simple', 'is', 'Python', 'and so on...'] |
sample | random.sample的函數(shù)原型為:random.sample(sequence, k),從指定序列中隨機(jī)獲取指定長(zhǎng)度的片斷。sample函數(shù)不會(huì)修改原有序列。 | list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] slice = random.sample(list, 5) #從list中隨機(jī)獲取5個(gè)元素,作為一個(gè)片斷返回 print slice print list #原有序列并沒有改變。 |
from fractions import Fraction
x = Fraction(1, 3)
1/3
到此,相信大家對(duì)“Python數(shù)字類型有哪些”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
當(dāng)前名稱:Python數(shù)字類型有哪些
標(biāo)題鏈接:http://jinyejixie.com/article12/posodc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司、網(wǎng)站制作、企業(yè)網(wǎng)站制作、做網(wǎng)站、App設(shè)計(jì)、移動(dòng)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)