你可以使用type()
函數來檢查變量是否為整數,將變量作為參數傳遞給該函數,然後將結果與int
類進行比較:
age = 1
type(age) == int #True
或者使用isinstance()
函數,傳遞兩個參數:變量和int
類:
age = 1
isinstance(age, int) #True
你可以通過將變量與float
進行比較,來檢查數字是否為浮點數:
fraction = 0.1
type(fraction) == float #True
你可以使用type()
函數來檢查變量是否為整數,將變量作為參數傳遞給該函數,然後將結果與int
類進行比較:
age = 1
type(age) == int #True
或者使用isinstance()
函數,傳遞兩個參數:變量和int
類:
age = 1
isinstance(age, int) #True
你可以通過將變量與float
進行比較,來檢查數字是否為浮點數:
fraction = 0.1
type(fraction) == float #True