price =
8# 定義蘋果單價
weight =
7# 定義蘋果重量
money = price * weight # 定義付款金額
print
(money)
money = money -
5# 此步驟並未定義新的變數
print
(money)
# 變數只有第一次出現才是定義變數,再次出現則是使用變數,變數中儲存的值是可以變得。
output:
5651
資料型別可以分為數字型和非數字型
使用type
函式可以檢視乙個變數的型別。
a =
"hello "
b ="python"
c = a+b
print
(c)
output:
hello python
d =
e =5
f = d * e
print
(f)
output:使用input
函式實現鍵盤輸入
語法格式:字串變數 = input("提示資訊")
注意:在不做型別轉換的情況下,使用者輸入的任何內容python都認為是乙個字串
a =
8b =
input()
c = a*b
print
(c)
output:可以使用型別轉換函式,將使用者輸入的變數進行轉換
int(a)
將a轉換為乙個整數
float(a)
將a轉換為乙個浮點數
a =
8b =
float
(input()
)c = a*b
print
(c)
output:如果希望輸出文字資訊的同時,一起輸出資料,則需要使用格式化操作符%
.
%s
字串
%d
有符號十進位制整數,%06d
表示輸出的整數顯示位數,不足的地方用0補全
%f
浮點數,%.02f
表示小數點後只顯示兩位
%%
輸出『%』
語法格式:print("格式化字串" % (變數1, 變數2))
print(%
(a,b,c)
)
output: Python的學習筆記(2)Python的基礎
1 變數的賦值 示例如下 coding utf 8 c 100 m 10.231 l mk n a b d 11 e,f,g 1,3,hello print c print m print l print k print a print b print d print e print f print...
python 學習筆記 變數
在python 中,定義變數 a 3 python 為弱型別語音,不需要指明其型別,執行時自動識別a為變數指向 儲存了 value為3的記憶體位址。所以在變數a中,只有乙個位址引用,id 函式取物件位址 a 3 b 3.0 a b return true a is b return false id...
Python學習筆記 變數
a 1,2,3 為賦值符號不是等於,變數a print a 變數名要具有一定的意義 name xia chuan dong color white black 變數命名規則 1字母 數字 下劃線組成,第乙個必須為字母 2系統關鍵字不能用在變數名中,保留關鍵字,and,if,import,3變數名區分...