float()方法從數(shù)字或字符串中返回浮點(diǎn)數(shù)。
float()的語法為:
float([x])
float()方法采用一個(gè)參數(shù):
x(可選) -需要轉(zhuǎn)換為浮點(diǎn)數(shù)的數(shù)字或字符串。
如果是字符串,則該字符串應(yīng)包含小數(shù)點(diǎn)
參數(shù)類型 | 用法 |
---|---|
Float number | 用作浮點(diǎn)數(shù) |
Integer | 用作整數(shù) |
String |
必須包含十進(jìn)制數(shù)字。 前導(dǎo)和尾隨空格被刪除。 可選使用“ +”,“-”符號(hào)。 可以包含NaN,Infinity,inf(小寫或大寫)。 |
float()方法返回:
傳遞參數(shù)時(shí)的等效浮點(diǎn)數(shù)
如果沒有傳遞參數(shù),則為0.0
如果參數(shù)超出Python float的范圍,則會(huì)發(fā)生OverflowError異常
# 參數(shù)為整數(shù) print(float(10)) # 參數(shù)為浮動(dòng) print(float(11.22)) # 參數(shù)為字符串浮點(diǎn) print(float("-13.33")) # 參數(shù)為帶空格的字符串浮點(diǎn)數(shù) print(float(" -24.45\n")) # 參數(shù)為字符串,會(huì)拋出浮點(diǎn)錯(cuò)誤 print(float("abc"))
運(yùn)行該程序時(shí),輸出為:
10.0 11.22 -13.33 -24.45 ValueError: could not convert string to float: 'abc'
# 參數(shù)為 NaN print(float("nan")) print(float("NaN")) # 參數(shù)為 inf/infinity print(float("inf")) print(float("InF")) print(float("InFiNiTy")) print(float("infinity"))
運(yùn)行該程序時(shí),輸出為:
nan nan inf inf inf inf