深入解析Python中的變數和賦值運算子

來源:互聯網
上載者:User
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
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.