Venez discuter sur le forum ! ■ Inscription RAPIDE et GRATUITE. ■ |
😀 Accès aux forums de discussion 😀 |
SOUTIEN SCOLAIRE, aide en INFORMATIQUE, aide pour apprendre le FRANÇAIS et l'ANGLAIS, discussion sur vos centres d'INTÉRÊTS et LOISIRS... |
Vous recherchez la version française de cette section ?
Cette section est en anglais parce que les contenus sont en anglais. Si vous préférez la version française de cette section, cliquez sur le lien ci-dessous.
Cependant, les contenus des sections française et anglaise ne sont pas nécessairement les mêmes !• Contenus sur les mathématiques en français •
Cependant, les contenus des sections française et anglaise ne sont pas nécessairement les mêmes !
Some mathematical functions in Python 2.x
In Python 2.x, to be able to use mathematical functions, you need to import the Python math library with the following command line:
Then, all mathematical functions from the math library become available.
This succession of instructions returns the value of \(cos(\pi)\), namely -1.
Here is a non-exhaustive list of the functions available in the Python math library:
To calculate the exponential of a number: \(e^x\) (ou \(\exp(x)\))
To calculate the square root of a number: \(\sqrt{x}\)
To calculate the cosine of a number: \(\cos(x)\)
To calculate the sine of a number: \(\sin(x)\)
To calculate the tangent of a number: \(tan(x)\)
To use the number pi: \(\pi\)
To calculate the power of a number: \(x^y\)
To get the closest integer smaller than a number (the integral part): the greatest integer less than or equal to x
To get the closest integer greater than a number: the smallest integer greater than or equal to x
To calculate the absolute value of a number: \(\lvert x \rvert\)
To calculate the factorial of an integer: \(x!\)
If you have any comments or questions about the math library of Python 2.x, you can discuss them in the forum: Discussion forums.
import math
Then, all mathematical functions from the math library become available.
- Example :
>> import math
>> math.cos(math.pi)
This succession of instructions returns the value of \(cos(\pi)\), namely -1.
Here is a non-exhaustive list of the functions available in the Python math library:
- To calculate the logarithm of a number (natural logarithm to base \(e\)): \(\ln(x)\)
math.log(x)
math.exp(x)
math.sqrt(x)
math.cos(x)
math.sin(x)
math.tan(x)
math.pi
math.pow(x,y)
math.floor(x)
math.ceil(x)
math.fabs(x)
math.factorial(x)
If you have any comments or questions about the math library of Python 2.x, you can discuss them in the forum: Discussion forums.
Partager cette page sur les réseaux sociaux :
Des questions, des commentaires ?
Commentaires rapides
Il n'y a pas encore de commentaires.