Fabrication industrielle
Internet des objets industriel | Matériaux industriels | Entretien et réparation d'équipement | Programmation industrielle |
home  MfgRobots >> Fabrication industrielle >  >> Industrial programming >> Python

Fonction Python abs() :Exemples de valeurs absolues

Python abs()

Python abs() est une fonction intégrée disponible avec la bibliothèque standard de python. Il renvoie la valeur absolue du nombre donné. La valeur absolue d'un nombre est la valeur sans tenir compte de son signe. Le nombre peut être un entier, un nombre à virgule flottante ou un nombre complexe. Si le nombre donné est complexe, il renverra sa magnitude.

Syntaxe :

abs(value)

Paramètres :(valeur)

La valeur d'entrée à donner à abs() pour obtenir la valeur absolue. Il peut s'agir d'un entier, d'un flottant ou d'un nombre complexe.

Valeur de retour :

Il renverra la valeur absolue pour le nombre donné.

Exemples :

Exemple de code 1 :nombre entier et flottant

Pour obtenir la valeur absolue d'un entier et d'un nombre flottant, vérifiez ce code :

# testing abs() for an integer and float

int_num = -25

float_num = -10.50

print("The absolute value of an integer number is:", abs(int_num))
print("The absolute value of a float number is:", abs(float_num))

Sortie :

The absolute value of an integer number is: 25
The absolute value of a float number is: 10.5

Exemple 2 :nombre complexe

Pour obtenir la valeur absolue d'un nombre complexe

# testing abs() for a complex number

complex_num = (3+10j)

print("The magnitude of the complex number is:", abs(complex_num))

Sortie :

The magnitude of the complex number is: 10.44030650891055

Résumé :


Python

  1. Variables, constantes et littéraux Python
  2. Arguments de la fonction Python
  3. Fonction Python Anonyme/Lambda
  4. Générateurs Python
  5. Fermetures Python
  6. Décorateurs Python
  7. Instruction Python Print() :comment imprimer avec des exemples
  8. Python String strip() Fonction avec EXAMPLE
  9. Python String count() avec des EXEMPLES