Python中數字以及算數運算子的相關使用

2022-09-27 08:21:14 字數 1395 閱讀 2536

python數字

數字資料型別用於儲存數值。

他們是不可改變的資料型別,這意味著改變量字資料型別會分配乙個新的物件。

當你指定乙個值時,number物件就會被建立:

var1 = 1

var2 = 10

您也可以使用del語句刪除一些物件引用。

del語句的語法是:

del 程式設計客棧var1[,var2[,var3[....,varn]]]]

您可以通過使用del語句刪除單個或多個物件。例如:

del var

del var_a, var_b

python支援四種不同的數值型別:

例項一些數值型別的例項:

長整型也可以使用小寫"l",但是還是建議您使用大寫"l",避免與數字"1"混淆。python使用"l"來顯示長整型。

python還支援複數,複數由實數部分和虛數部分構成,可以用a + bj,或者complex(a,b)表示, 複數的實部a和虛部b都是浮點型。

python算術運算子

以下假設變數a為10,變數b為20:

以下例項演示了python所有算術運算子的操作:

#!/usr/bin/python

a = 21

b = 10

c = 0

c = a + b

print "line 1 - value of c is ", c

c = a - b

print "line 2 - value of c is ", c

c = a * b

print "line 3 - value of c is ", c

c = a / b

print "line 4 - value of c is ", c

c = a % b

print "line 5 - value of c is ", c

a = 2

b = 3

c = a**b

print "line 6 - value of c is ", c

a = www.cppcns.com10

b = 5

c = a//b

print "line 7 - value of c is ", c

以上例項輸出結果:

line 1 - value of c i程式設計客棧s 31

line 2 - value of c is 11

line 3 - value of c is 210

line 4 - value of c is程式設計客棧 2

line 5 - value of c is 1

line 6 - value of c is 8

line 7 -程式設計客棧 value of c is 2

本文位址:

Python型別和運算 數字

在python中,數字並不是乙個真正的物件型別,而是一組相似型別的分類。不僅包括通常的數字型別 整數和浮點數 黑包括數字表示式,以及高階的數字程式設計。基本數字常量 數字 常量 1234,24 整數 無窮大小 1.23,3.14e10 浮點數 0177,0x9ff,0b1010 python2.6中...

python算數運算

1.算數運算子 以下假設變數 a 10,b 20 以下例項演示了python所有算術運算子的操作 a 5 b 13 c 0 c a b print 1 c 的值為 c c a b print 2 c 的值為 c c a b print 3 c 的值為 c c a b print 4 c 的值為 c ...

python 基礎之算數運算

算術運算子 示例 python class number def init self,num self.num num 物件出現在 的左邊時會自動觸發 def add self,other print add return self.num other 物件出現在 的右邊時會自動觸發 def rad...