1. 程式人生 > >3、變量

3、變量

ogr 定義 老男孩 下劃線 標記 描述 purpose 劃線 under

變量的作用 Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves. It is helpful to think of variables as containers that hold information. Their sole purpose is to label and store data in memory. This data can then be used throughout your program.
變量用於存儲在計算機程序中要引用和操作的信息。 它們還提供了一種用描述性名稱標記數據的方法,以便讀者和我們自己能夠更清楚地理解我們的程序。 將變量看作容納信息的容器是很有幫助的。 它們的唯一目的是在內存中標記和存儲數據。 這些數據可以在整個程序中使用。 變量的定義規則
  1. 變量名只能是 字母、數字或下劃線的任意組合
  2. 變量名的第一個字符不能是數字
  3. 以下關鍵字不能聲明為變量名

技術分享圖片

定義方式

駝峰體 AgeOfOldboy = 56 NumberOfStudents = 80 下劃線(官方推薦) age_of_oldboy = 56 number_of_students = 80

定義變量不好的方式舉例

  • 變量名為中文、拼音
  • 變量名過長
  • 變量名詞不達意

常量

常量即指不變的量,如pai 3.141592653..., 或在程序運行過程中不會改變的量 舉例,假如老男孩老師的年齡會變,那這就是個變量,但在一些情況下,他的年齡不會變了,那就是常量。在Python中沒有一個專門的語法代表常量,程序員約定俗成用變量名全部大寫代表常量 AGE_OF_OLDBOY = 56
在c語言中有專門的常量定義語法,const int count = 60;一旦定義為常量,更改即會報錯

3、變量