指定變數型別
相信很多次你都想強制給某一個變數賦一個型別,現在可以使用 強制轉換
了, Python 是一個面嚮物件語言,所以你可以在類中定義資料型別,包括一些基元型別。
在 Python 中實現轉換可以使用下面的的建構函式。
int()表示將 int,float(支援四捨五入),string 字面量的值轉換為 int 型別。
x = int(1) # x will be 1y = int(2.8) # y will be 2z = int("3") # z will be 3
float()表示將 int,float(支援四捨五入),string 字面量的值轉換為 float 型別。
x = float(1) # x will be 1.0y = float(2.8) # y will be 2.8z = float("3") # z will be 3.0w = float("4.2") # w will be 4.2
str()表示將 int,float(支援四捨五入),string 字面量的值轉換為 string 型別。
最新評論