Wiskundige functies in Python | Set 4 (speciale functies en constanten)

Enkele van de wiskundige functies worden hieronder besproken in set 1, set 2 en set 3 Wiskundige functies in Python | Set 1 (numerieke functies) Wiskundige functies in Python | Set 2 (logaritmische en machtsfuncties) Wiskundige functies in Python | Set 3 (trigonometrische en hoekfuncties) Speciale functies en constanten worden in dit artikel besproken. 1. gamma() : - Deze functie wordt gebruikt om de gamma-functie of the argument. 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 : - Dit is een ingebouwde constante die de waarde van pi(3,141592) . 3. en : - Dit is een ingebouwde constante die de waarde van 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 :- Dit is een positieve drijvende komma oneindigheidsconstante . -inf wordt gebruikt om de negatieve drijvende komma oneindigheid aan te duiden. Deze constante is gedefinieerd in Python 3.5 en hoger. 5. Voor jou() : - Deze functie wordt gebruikt rekening of de waarde een oneindig of niet. 6. inch : - Deze constante geeft ' Geen nummer 'in Python. Deze constante is gedefinieerd in Python 3.5 en hoger. 7. isnan() : - Deze functie keert terug waar als het getal 'nan' is 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