基於python:3.7.8
變量是個盒子,裡面可以裝各種東西。裝了蘋果,當箱子和其它東西合作時,它就是蘋果;裝了鴨梨,和其它東西合作時,它就是鴨梨。
編譯型語言(JAVA、Dart等)的變量要求箱子是固定的,裝水果的就裝水果,裝面點的就裝面點,裝配件的就裝配件。
解釋型語言(python、javascript等)的變量不做要求,隨便裝,愛裝啥裝啥。當它和水果合作時就拿它當水果用;當它和面點合作時就拿它當面點用。
廣義的變量是相對於常量而言的,指可變動的量。變量是絕對的,常量是相對的,沒有絕對意義上的常量。
來自知乎:變量是什麼意思?
messsage = "hello,world!"
number = 12;
_Name = "張三";
張Mes = "我是漢字變量";
print(messsage);
print(number);
print(_Name);
print(張Mes);
hello,world!
12
張三
我是漢字變量
變量名不建議使用,小寫字母l,和數字0,因為1和l,0和o容易混淆;不建議使用漢字;
Python 3.7.8 (tags/v3.7.8:4b47a5b6ba, Jun 28 2020, 08:53:46) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
>>>
'False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield'
python中沒有使用語法強制定義常量,也就是說,python中定義常量本質上就是變量。如果非要定義常量,變量名必須全大寫;
從規范上,大家默認將常量大寫,不改變它的值;
PI=3.1415;
print(PI)
文章目錄前言一、Sub-function details1.