1. 變數的輸入
函式說明
print(x)
將 x 輸出到控制台
type(x)
檢視 x 的變數型別
2) input 函式實現鍵盤輸入
變數
=input
("提示資訊 : "
3) 型別轉換函式函式
說明int(x)
將 x 轉換成為乙個整數
float(x)
將 x 裝換成為乙個浮點數
演練 :
#**
price
=input
("蘋果的**: ")#
重量weight
=input
("蘋果的重量: ")#
轉換成浮點數
price_int
=float
(price
)weight_int
=float
(weight)#
總價print
(price_int
*weight_int
)也可以這樣寫
:price
=float
(input
("蘋果的** : "
))
price_int
=float
(input
("蘋果的**: "))
weight_int
=float
(input
("蘋果的重量: "))
#總價print
(price_int
*weight_int)或者
print
(float
(input
("蘋果的**: "))
*float
(input
("蘋果的重量: "))
)
2. 變數的格式化輸出
格式化字元
含義%s
字串%d
有符號十進位制整數,%06d表示輸出的整數顯示位數,不足的地方使用0補全
%f浮點數,%.2f表示小數點後只顯示兩位
%%輸出 %
語法格式如下
:print
("格式化字串"%變數
1)print
("格式化字串"%(
變數1,變數
2...)
)
2.1 格式化輸出演練
#定義變數
name,輸出
我的名字叫小明,
我很帥!
name
="小明"
print
("我的名字叫 %s, 我很帥!"
%name)#
(我的名字叫小明,
我很帥!
)age=18
print
("我今年 %2d 歲了"
%age)#
兩位數(
我今年18歲了)
weight
=55.52
print
("我有 %.5f 斤"
%weight)#
保留5位數(
我有55.52000斤)
scale
=0.25
print
("資料比例是 %.2f%%"
%scale)#
(資料比例是
0.25%)
print
("資料比例是 %0.2f%%"
%scale*2
)#(資料比例是
0.25
%資料比例是
0.25%)
,先輸出了字串,所以,就程式設計字串拼接了
print
("資料比例是 %0.2f%%"%(
scale*2
))#(
資料比例是
0.50
%)
Python 基礎 變數的輸入 九
1.識別符號和關鍵字 1.1 識別符號 識別符號就是程式設計師定義的變數名,函式名 名字需要有見明知義的效果 通過以下命令可以檢視 python 中的關鍵字 import keyword print keyword kwlist false none true and as assert async...
Python基礎 3 變數的輸入輸出
在python中可以使用input函式從鍵盤等待使用者輸入,使用者輸入的任何內容都被認為是乙個字串 語法 字串變數 input 提示資訊 使用者輸入有時候需要進行型別轉換 型別轉換函式 int x 將x轉換為乙個整數 float x 將x轉換為乙個浮點數 input輸入及型別轉換案例 price s...
Python基礎 變數
變數的計算 變數的命名 變數命名規範 變數名 值 定義變數 price 8.5 weight 7.5 計算總價 total price weight 總 減少10元 total total 10 最後輸出總價 print total 變數型別不需要直接設定,由程式自動給出 name 張三 字串str...