Python 變數類型
變數儲存在記憶體中的值。這就意味著在建立變數時會在記憶體中開闢一個空間。
基於變數的資料類型,解譯器會分配指定記憶體,並決定什麼資料可以被儲存在記憶體中。
因此,變數可以指定不同的資料類型,這些變數可以儲存整數,小數或字元。
變數賦值
Python中的變數不需要聲明,變數的賦值操作既是變數聲明和已定義流程。
每個變數在記憶體中建立,都包括變數的標識,名稱和資料這些資訊。
每個變數在使用前都必須賦值,變數賦值以後該變數才會被建立。
等號(=)用來給變數賦值。
等號(=)運算子左邊是一個變數名,等號(=)運算子右邊是儲存在變數中的值。例如:
#!/usr/bin/python# -*- coding: UTF-8 -*-counter = 100 # 賦值整型變數miles = 1000.0 # 浮點型name = "John" # 字串print counterprint milesprint name
以上執行個體中,100,1000.0和"John"分別賦值給counter,miles,name變數。
執行以上程式會輸出如下結果:
1001000.0John
多個變數賦值
Python允許你同時為多個變數賦值。例如:
a = b = c = 1
以上執行個體,建立一個整型對象,值為1,三個變數被分配到相同的記憶體空間上。
您也可以為多個對象指定多個變數。例如:
a, b, c = 1, 2, "john"
以上執行個體,兩個整型對象1和2的分配給變數a和b,字串對象"john"分配給變數c。
Python賦值運算子
以下假設變數a為10,變數b為20:
以下執行個體示範了Python所有賦值運算子的操作:
#!/usr/bin/pythona = 21b = 10c = 0c = a + bprint "Line 1 - Value of c is ", cc += aprint "Line 2 - Value of c is ", c c *= aprint "Line 3 - Value of c is ", c c /= a print "Line 4 - Value of c is ", c c = 2c %= aprint "Line 5 - Value of c is ", cc **= aprint "Line 6 - Value of c is ", cc //= aprint "Line 7 - Value of c is ", c
以上執行個體輸出結果:
Line 1 - Value of c is 31Line 2 - Value of c is 52Line 3 - Value of c is 1092Line 4 - Value of c is 52Line 5 - Value of c is 2Line 6 - Value of c is 2097152Line 7 - Value of c is 99864