說明:乙個布林型別的變數只有true、false兩種值
作用:作為真假的判斷
a =
true
b =false
print
(a, b)
height =
173.555
print
("lucky is a good man!his height is %f"
%(height)
)print
("lucky is a good man!his height is %.2f"
%(height)
)age =
18print
("lucky is a nice man!he is *%d* years old"
%(age)
)print
("lucky is a nice man!he is *%4d* years old"
%(age)
)print
("lucky is a nice man!he is *%-4d* years old"
%(age)
)
說明:運算元字的運算
匯入隨機模組
# 匯入隨機模組
import random
字串是以單引號或者雙引號括起來的任意文字
str1 =
'lucky is a good man'
str2 =
"lucky is a nice man"
注意:
1、引號本身是一種表現形式,不屬於字串的內容
2、如果字串本身帶單引號,外側用雙引號包裹起來(「he』s a good man」)
以』』'或者"""引起來的任意文字
python基礎 基本資料型別
十進位制 逢10進1,1,2,3,4,5,6,7,8,9,10,11 二進位制 逢2進1,001,010,011,100,101,110,111 八進位制 逢8進1,1,2,3,4,5,6,7,10,11,12,13,14,15,16,20 十六進製制 逢16進1,1,2,3,4,5,6,7,8,9...
Python基礎 基本資料型別
1 數字型別的組成 整數 預設十進位制 二進位制0b開頭,八進位制0o開頭,十六進製制0x開頭 十進位制與其他進製的轉換,輸出結果為字串型別 a bin 16 轉二進位制 b oct 16 轉十進位制 c hex 16 轉十六進製制 其他進製與十進位制的轉換,輸出結果為整型 d int a,2 二進...
python基礎之幾種基本資料型別
python3 的幾種基礎資料型別 1 number型別儲存數字值,是不可變資料型別,一種字面值。支援int 整型 float 浮點型 complex 複數 三種型別數值,python2.7包括long型別。sys.float info max 1.7976931348623157e 308,max...