cMath模塊包含許多函數,這些函數用於對複數進行數學運算。 cmath.isnan()函數用於檢查該值是否為nan(非數字)。在此函數中傳遞的值可以是int,float和複數。
用法:cmath.isnan(x)
參數:此方法接受以下參數。
- x:此參數是值以檢查NaN。
返回值:這個方法返回布爾值。
以下示例說明了上述函數的用法:
範例1:
Python3
# Python code to implement
# the isnan()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.isnan() method
val = cmath.isnan(1 + 2j)
print(val)
輸出:
False
範例2:
Python3
# Python code to implement
# the isnan()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.isnan() method
val = cmath.isnan(1 + float('nan'))
print(val)
輸出:
True
相關用法
- Python Wand function()用法及代碼示例
- Python map()用法及代碼示例
- Python cmp()用法及代碼示例
- Python oct()用法及代碼示例
- Python ord()用法及代碼示例
- Python str()用法及代碼示例
- Python dir()用法及代碼示例
- Python sum()用法及代碼示例
- Python hex()用法及代碼示例
- Python now()用法及代碼示例
- Python tell()用法及代碼示例
- Python int()用法及代碼示例
- Python id()用法及代碼示例
- Python cmath.sin()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 Python – cmath.isnan() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。