Python Number 數(shù)字

python number 數(shù)字

python number 數(shù)據(jù)類型用于存儲(chǔ)數(shù)值。

數(shù)據(jù)類型是不允許改變的,這就意味著如果改變 number 數(shù)據(jù)類型的值,將重新分配內(nèi)存空間。

以下實(shí)例在變量賦值時(shí) number 對(duì)象將被創(chuàng)建:

var1 = 1
var2 = 10

您也可以使用del語(yǔ)句刪除一些 number 對(duì)象引用。

del語(yǔ)句的語(yǔ)法是:

del var1[,var2[,var3[....,varn]]]]

您可以通過使用del語(yǔ)句刪除單個(gè)或多個(gè)對(duì)象,例如:

del var
del var_a, var_b

python 支持四種不同的數(shù)值類型:

  • 整型(int) - 通常被稱為是整型或整數(shù),是正或負(fù)整數(shù),不帶小數(shù)點(diǎn)。
  • 長(zhǎng)整型(long integers) - 無(wú)限大小的整數(shù),整數(shù)最后是一個(gè)大寫或小寫的l。
  • 浮點(diǎn)型(floating point real values) - 浮點(diǎn)型由整數(shù)部分與小數(shù)部分組成,浮點(diǎn)型也可以使用科學(xué)計(jì)數(shù)法表示(2.5e2 = 2.5 x 102 = 250)
  • 復(fù)數(shù)(complex numbers) - 復(fù)數(shù)由實(shí)數(shù)部分和虛數(shù)部分構(gòu)成,可以用a + bj,或者complex(a,b)表示, 復(fù)數(shù)的實(shí)部a和虛部b都是浮點(diǎn)型。
intlongfloatcomplex
1051924361l0.03.14j
100-0x19323l15.2045.j
-7860122l-21.99.322e-36j
0800xdefabcecbdaecbfbael32.3+e18.876j
-0490535633629843l-90.-.6545+0j
-0x260-052318172735l-32.54e1003e+26j
0x69-4721885298529l70.2-e124.53e-7j
  • 長(zhǎng)整型也可以使用小寫"l",但是還是建議您使用大寫"l",避免與數(shù)字"1"混淆。python使用"l"來(lái)顯示長(zhǎng)整型。
  • python還支持復(fù)數(shù),復(fù)數(shù)由實(shí)數(shù)部分和虛數(shù)部分構(gòu)成,可以用a + bj,或者complex(a,b)表示, 復(fù)數(shù)的實(shí)部a和虛部b都是浮點(diǎn)型

 

1. python number 類型轉(zhuǎn)換

int(x [,base ])         將x轉(zhuǎn)換為一個(gè)整數(shù)  
long(x [,base ])        將x轉(zhuǎn)換為一個(gè)長(zhǎng)整數(shù)  
float(x )               將x轉(zhuǎn)換到一個(gè)浮點(diǎn)數(shù)  
complex(real [,imag ])  創(chuàng)建一個(gè)復(fù)數(shù)  
str(x )                 將對(duì)象 x 轉(zhuǎn)換為字符串  
repr(x )                將對(duì)象 x 轉(zhuǎn)換為表達(dá)式字符串  
eval(str )              用來(lái)計(jì)算在字符串中的有效python表達(dá)式,并返回一個(gè)對(duì)象  
tuple(s )               將序列 s 轉(zhuǎn)換為一個(gè)元組  
list(s )                將序列 s 轉(zhuǎn)換為一個(gè)列表  
chr(x )                 將一個(gè)整數(shù)轉(zhuǎn)換為一個(gè)字符  
unichr(x )              將一個(gè)整數(shù)轉(zhuǎn)換為unicode字符  
ord(x )                 將一個(gè)字符轉(zhuǎn)換為它的整數(shù)值  
hex(x )                 將一個(gè)整數(shù)轉(zhuǎn)換為一個(gè)十六進(jìn)制字符串  
oct(x )                 將一個(gè)整數(shù)轉(zhuǎn)換為一個(gè)八進(jìn)制字符串  

 

2. python math 模塊、cmath 模塊

python 中數(shù)學(xué)運(yùn)算常用的函數(shù)基本都在 math 模塊、cmath 模塊中。

python math 模塊提供了許多對(duì)浮點(diǎn)數(shù)的數(shù)學(xué)運(yùn)算函數(shù)。

python cmath 模塊包含了一些用于復(fù)數(shù)運(yùn)算的函數(shù)。

cmath 模塊的函數(shù)跟 math 模塊函數(shù)基本一致,區(qū)別是 cmath 模塊運(yùn)算的是復(fù)數(shù),math 模塊運(yùn)算的是數(shù)學(xué)運(yùn)算。

要使用 math 或 cmath 函數(shù)必須先導(dǎo)入:

import math

查看 math 查看包中的內(nèi)容:

>>> import math
>>> dir(math)
['__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
>>>

下文會(huì)介紹各個(gè)函數(shù)的具體應(yīng)用。

查看 cmath 查看包中的內(nèi)容

>>> import cmath
>>> dir(cmath)
['__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atanh', 'cos', 'cosh', 'e', 'exp', 'inf', 'infj', 'isclose', 'isfinite', 'isinf', 'isnan', 'log', 'log10', 'nan', 'nanj', 'phase', 'pi', 'polar', 'rect', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau']
>>>
>>> import cmath
>>> cmath.sqrt(-1)
1j
>>> cmath.sqrt(9)
(3+0j)
>>> cmath.sin(1)
(0.8414709848078965+0j)
>>> cmath.log10(100)
(2+0j)
>>>

 

3. python數(shù)學(xué)函數(shù)

函數(shù)返回值 ( 描述 )
abs(x)返回?cái)?shù)字的絕對(duì)值,如abs(-10) 返回 10
ceil(x) 返回?cái)?shù)字的上入整數(shù),如math.ceil(4.1) 返回 5
cmp(x, y) 如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1
exp(x) 返回e的x次冪(ex),如math.exp(1) 返回2.718281828459045
fabs(x)返回?cái)?shù)字的絕對(duì)值,如math.fabs(-10) 返回10.0
floor(x) 返回?cái)?shù)字的下舍整數(shù),如math.floor(4.9)返回 4
log(x) 如math.log(math.e)返回1.0,math.log(100,10)返回2.0
log10(x) 返回以10為基數(shù)的x的對(duì)數(shù),如math.log10(100)返回 2.0
max(x1, x2,...) 返回給定參數(shù)的最大值,參數(shù)可以為序列。
min(x1, x2,...) 返回給定參數(shù)的最小值,參數(shù)可以為序列。
modf(x) 返回x的整數(shù)部分與小數(shù)部分,兩部分的數(shù)值符號(hào)與x相同,整數(shù)部分以浮點(diǎn)型表示。
pow(x, y) x**y 運(yùn)算后的值。
round(x [,n])返回浮點(diǎn)數(shù)x的四舍五入值,如給出n值,則代表舍入到小數(shù)點(diǎn)后的位數(shù)。
sqrt(x) 返回?cái)?shù)字x的平方根

 

4. python隨機(jī)數(shù)函數(shù)

隨機(jī)數(shù)可以用于數(shù)學(xué),游戲,安全等領(lǐng)域中,還經(jīng)常被嵌入到算法中,用以提高算法效率,并提高程序的安全性。

python包含以下常用隨機(jī)數(shù)函數(shù):

函數(shù)描述
choice(seq)從序列的元素中隨機(jī)挑選一個(gè)元素,比如random.choice(range(10)),從0到9中隨機(jī)挑選一個(gè)整數(shù)。
randrange ([start,] stop [,step]) 從指定范圍內(nèi),按指定基數(shù)遞增的集合中獲取一個(gè)隨機(jī)數(shù),基數(shù)默認(rèn)值為 1
random() 隨機(jī)生成下一個(gè)實(shí)數(shù),它在[0,1)范圍內(nèi)。
seed([x]) 改變隨機(jī)數(shù)生成器的種子seed。如果你不了解其原理,你不必特別去設(shè)定seed,python會(huì)幫你選擇seed。
shuffle(lst) 將序列的所有元素隨機(jī)排序
uniform(x, y)隨機(jī)生成下一個(gè)實(shí)數(shù),它在[x,y]范圍內(nèi)。

 

5. python三角函數(shù)

python包括以下三角函數(shù):

函數(shù)描述
acos(x)返回x的反余弦弧度值。
asin(x)返回x的反正弦弧度值。
atan(x)返回x的反正切弧度值。
atan2(y, x)返回給定的 x 及 y 坐標(biāo)值的反正切值。
cos(x)返回x的弧度的余弦值。
hypot(x, y)返回歐幾里德范數(shù) sqrt(x*x + y*y)。
sin(x)返回的x弧度的正弦值。
tan(x)返回x弧度的正切值。
degrees(x)將弧度轉(zhuǎn)換為角度,如degrees(math.pi/2) , 返回90.0
radians(x)將角度轉(zhuǎn)換為弧度

 

6. python數(shù)學(xué)常量

常量描述
pi數(shù)學(xué)常量 pi(圓周率,一般以π來(lái)表示)
e數(shù)學(xué)常量 e,e即自然常數(shù)(自然常數(shù))。

下一節(jié):python abs() 函數(shù)

python 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频