您好,登錄后才能下訂單哦!
本篇內容主要講解“Python數字類型有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python數字類型有哪些”吧!
Python中數字類型包括:
整數
浮點數
復數
固定精度的十進制數
有理分數
集合
布爾類型
無窮的整數精度
各種數字內置函數和模塊
表達式操作符:
操作符 | 描述 |
---|---|
yield | 生成器函數發送協議 |
lambda args:expression | 生成匿名函數 |
x if y else z | 三元表達式 |
x or y | 邏輯或(存在短路算法) |
x and y | 邏輯與(存在短路算法) |
not x | 邏輯非 |
x in y , x not in y | 成員關系 |
x is y ,x is not y | 對象實體測試 |
x<y,x<=y,x>y,x>=y,x==y,x!=y | 比較大小 |
x|y | 位或,集合并集 |
x^y | 位異或,集合對稱差 |
x&y | 位與,集合交集 |
x<<y,x>>y | 左移或者右移y位 |
x+y,x-y | 加減法、合并刪除 |
x*y,x%y,x/y,x//y | 乘,取余數,除,地板除 |
-x,+x | 一元減法 |
~x | 按位求補(取反) |
x**y | 冪運算 |
x[i] | 索引,函數調用 |
x[i:j:k] | 分片 |
x(...) | 調用函數 |
x.attr | 調用屬性 |
() | 元組,表達式,生成器 |
[] | 列表,列表解析 |
{} | 字典,集合,集合和字典解析 |
內置數學函數
math
函數|常量 | 說明 | 實例 |
---|---|---|
e | 自然常數e | math.e 2.718281828459045 |
inf | 默認值:inf | |
nan | 默認值:nan | |
pi | 圓周率π | math.pi 3.141592653589793 |
tau | 6.283185307179586 | |
acos(x) | 返回x的反三角余弦值 | math.acos(math.sqrt(2)/2) 0.7853981633974483 |
acosh(x) | 返回x的反雙曲余弦函數 | |
asin(x) | 返回x的反三角正弦值 | math.asin(0.5) 0.5235987755982989 |
asinh(x) | 返回x的反雙曲正弦函數 | |
atan(x) | 返回x的反三角正切值 | math.atan(1.7320508075688767) 1.0471975511965976 |
atan2(y, x) | 返回x/y的反三角正切值 | math.atan2(2,1) 1.1071487177940904 |
atanh(x) | 返回x的反雙曲正切函數 | |
ceil(x) | 這個方法對i向上取整 | math.ceil(5.2) 6.0 |
copysign(x, y) | 若y<0,返回-1乘以x的絕對值; 否則,返回x的絕對值 | math.copysign(5.2, -1) -5.2 |
cos(x) | 返回x(弧度)的三角余弦值 | math.cos(math.radians(45)) 0.7071067811865476 |
cosh(x) | 返回x的雙曲余弦函數 | |
degrees(x) | 弧度轉度 | math.degrees(math.pi) 180.0 |
erf(x) | 返回x的誤差函數 | |
erfc(x) | 返回x的余誤差函數 | |
exp(x) | 返回e的x次方 | math.exp(2) 7.38905609893065 |
expm1(x) | 返回e的x次方減1 | math.expm1(2) 6.38905609893065 |
fabs(x) | 返回x的絕對值 | 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) | 返回無損精度的和 | |
gamma(x) | 返回x的伽瑪函數 | |
hypot(x, y) | 返回以x和y為直角邊的斜邊長 | math.hypot(3,4) 5.0 |
isinf(x) | 若x為無窮大,返回True;否則,返回False | |
isnan(x) | 若x不是數字,返回True;否則,返回False | math.isnan(1.2e3) False |
ldexp(x, i) | 返回x乘以2的i次方 | math.ldexp(0.75, 2) 3.0 |
lgamma(x) | 返回x的絕對值的自然對數的伽瑪函數 | |
log(x, base=None) | 返回x的以base為底的對數,base默認為e | |
log10(x) | 返回x的以10為底的對數 | math.log10(2) 0.30102999566398114 |
log1p(x) | 返回1+x的自然對數(以e為底) | math.log1p(math.e-1) 1.0 |
log2(x) | ||
modf(x) | 返回x的小數和整數 | math.modf(5.2) (0.20000000000000018, 5.0) |
pow(x, y) | 返回x的y次方 | math.pow(5,3) 125.0 |
radians(x) | 度轉弧度 | math.radians(45) 0.7853981633974483 |
sin(x) | 返回x(弧度)的三角正弦值 | math.sin(math.radians(30)) 0.49999999999999994 |
sinh(x) | 返回x的雙曲正弦函數 | |
sqrt(x) | 返回x的平方根 | math.sqrt(3) 1.7320508075688772 |
tan(x) | 返回x(弧度)的三角正切值 | math.tan(math.radians(60)) 1.7320508075688767 |
tanh(x) | 返回x的雙曲正切函數 | |
trunc(x) | 返回x的整數部分 | 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
函數|常量 | 說明 | 實例 |
---|---|---|
random | 用于生成一個0到1的隨機符點數: 0 <= n < 1.0 | |
uniform | random.uniform的函數原型為:random.uniform(a, b),用于生成一個指定范圍內的隨機符點數,兩個參數其中一個是上限,一個是下限。如果a > b,則生成的隨機數n: a <= n <= b。如果 a <b, 則 b <= n <= a。 | print random.uniform(10, 20) print random.uniform(20, 10) #---- 結果(不同機器上的結果不一樣) #18.7356606526 #12.5798298022 |
randint | random.randint()的函數原型為:random.randint(a, b),用于生成一個指定范圍內的整數。其中參數a是下限,參數b是上限,生成的隨機數n: a <= n <= b | print random.randint(12, 20) #生成的隨機數n: 12 <= n <= 20 print random.randint(20, 20) #結果永遠是20 #print random.randint(20, 10) #該語句是錯誤的。下限必須小于上限。 |
randrange | random.randrange的函數原型為:random.randrange([start], stop[, step]),從指定范圍內,按指定基數遞增的集合中 獲取一個隨機數。 | random.randrange(10, 100, 2) 結果相當于從[10, 12, 14, 16, ... 96, 98]序列中獲取一個隨機數。 在結果上與 random.choice(range(10, 100, 2) 等效。 |
choice | random.choice從序列中獲取一個隨機元素。其函數原型為:random.choice(sequence)。參數sequence表示一個有序類型。這里要說明 一下:sequence在python不是一種特定的類型,而是泛指一系列的類型。list, tuple, 字符串都屬于sequence。 | print random.choice("學習Python") print random.choice(["JGood", "is", "a", "handsome", "boy"]) print random.choice(("Tuple", "List", "Dict")) |
shuffle | random.shuffle的函數原型為:random.shuffle(x[, random]),用于將一個列表中的元素打亂。 | p = ["Python", "is", "powerful", "simple", "and so on..."] random.shuffle(p) print p #---- 結果(不同機器上的結果可能不一樣。) #['powerful', 'simple', 'is', 'Python', 'and so on...'] |
sample | random.sample的函數原型為:random.sample(sequence, k),從指定序列中隨機獲取指定長度的片斷。sample函數不會修改原有序列。 | list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] slice = random.sample(list, 5) #從list中隨機獲取5個元素,作為一個片斷返回 print slice print list #原有序列并沒有改變。 |
from fractions import Fraction
x = Fraction(1, 3)
1/3
到此,相信大家對“Python數字類型有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。