Funzioni matematiche in Python | Set 4 (Funzioni speciali e costanti)
Alcune delle funzioni matematiche sono discusse di seguito nel set 1, nel set 2 e nel set 3 Funzioni matematiche in Python | Set 1 (Funzioni numeriche) Funzioni matematiche in Python | Set 2 (funzioni logaritmiche e di potenza) Funzioni matematiche in Python | Set 3 (Funzioni trigonometriche e angolari) Le funzioni speciali e le costanti sono discusse in questo articolo. 1. gamma() :- Questa funzione viene utilizzata per restituire il file funzione gamma of the argument. Python
2. pi :- Questa è una costante incorporata che restituisce il file valore di pi(3.141592) . 3. e :- Questa è una costante incorporata che restituisce il file valore di e(2.718281) . Python
4.inf :- Questo è un costante infinita positiva in virgola mobile . -inf viene utilizzato per denotare l'infinito in virgola mobile negativo. Questa costante è definita in Python 3.5 e versioni successive. 5. Per te() :- Questa funzione viene utilizzata per controllo se il valore è an infinito o no. 6. dentro :- Questa costante denota ' Non un numero ' in Python. Questa costante è definita in Python 3.5 e versioni successive. 7. isnan() :- Questa funzione ritorna vero se il numero è 'nan' else returns false. Python
# Python code to demonstrate the working of # gamma() # importing 'math' for mathematical operations import math a = 4 # returning the gamma() of 4 print ( 'The gamma() of 4 is : ' end = '' ) print ( math . gamma ( a ))
Output: The gamma() of 4 is : 6.0
2. pi :- Questa è una costante incorporata che restituisce il file valore di pi(3.141592) . 3. e :- Questa è una costante incorporata che restituisce il file valore di e(2.718281) . Python
# Python code to demonstrate the working of # const. pi and e # importing 'math' for mathematical operations import math # returning the value of const. pi print ( 'The value of const. pi is : ' end = '' ) print ( math . pi ) # returning the value of const. e print ( 'The value of const. e is : ' end = '' ) print ( math . e )
Output: The value of const. pi is : 3.141592653589793 The value of const. e is : 2.718281828459045
4.inf :- Questo è un costante infinita positiva in virgola mobile . -inf viene utilizzato per denotare l'infinito in virgola mobile negativo. Questa costante è definita in Python 3.5 e versioni successive. 5. Per te() :- Questa funzione viene utilizzata per controllo se il valore è an infinito o no. 6. dentro :- Questa costante denota ' Non un numero ' in Python. Questa costante è definita in Python 3.5 e versioni successive. 7. isnan() :- Questa funzione ritorna vero se il numero è 'nan' else returns false. Python
# Python code to demonstrate the working of # inf nan isinf() isnan() # importing 'math' for mathematical operations import math # checking if number is nan if ( math . isnan ( math . nan )): print ( 'The number is nan' ) else : print ( 'The number is not nan' ) # checking if number is positive infinity if ( math . isinf ( math . inf )): print ( 'The number is positive infinity' ) else : print ( 'The number is not positive infinity' )
Output: The number is nan The number is positive infinity