Article Index


6°) Utiliser une bibliothèque

pour utiliser un module dans python il suffie de l'importer. En écrivant le nom du module suivie d'un "." vous pouvez acceder au fonction du module. de plus en effectuant deux tabulation la listes des functions et variables du module sont affichées. Exemple :
>>> import math
>>> math.
math.acos(       math.cosh(       math.fmod(       math.isnan(      math.pow(
math.acosh(      math.degrees(    math.frexp(      math.ldexp(      math.radians(
math.asin(       math.e           math.fsum(       math.lgamma(     math.sin(
math.asinh(      math.erf(        math.gamma(      math.log(        math.sinh(
math.atan(       math.erfc(       math.gcd(        math.log10(      math.sqrt(
math.atan2(      math.exp(        math.hypot(      math.log1p(      math.tan(
math.atanh(      math.expm1(      math.inf         math.log2(       math.tanh(
math.ceil(       math.fabs(       math.isclose(    math.modf(       math.tau
math.copysign(   math.factorial(  math.isfinite(   math.nan         math.trunc(
math.cos(        math.floor(      math.isinf(      math.pi   
>>> math.
  python propose un certain nombre de module "standar" disponibles directement après l'installation. c'est la cas de "math" la liste complètes est disponible ici The Python Standard Library. quelques unes seront utilisées dans le cadre de ce cours. De plus touts les modules, toutes les functions et les classes propose une documentation, par exemple avec la commande help(math)
Help on module math:

NAME
math

MODULE REFERENCE
https://docs.python.org/3.9/library/math

The following documentation is automatically generated from the Python
source files. It may be incomplete, incorrect or include features that
are considered implementation detail and may vary between Python
implementations. When in doubt, consult the module reference at the
location listed above.

DESCRIPTION
This module provides access to the mathematical functions
defined by the C standard.
il est aussi possible de n'importer qu'une seul fonction d'un module, par exemple :
>>> from math import pow
>>> pow(2.8284271247461903, 2)
8.000000000000002

7°) Utilisation mode "calculette"

Quelques exemples me semble suffisent, pour illustrer sont utilisation basique :
>>> import math
>>> # (ceci est un commentaire)
>>> # la fonction print permet d'afficher dans la console les paramètres
>>> print('Hello, world!')
Hello, world!
>>> # calcule racine de polyone
>>> a=5 # création d'une variable (a) et on lui donne une valeur (5)
>>> b=8
>>> c=1
>>> delta=math.pow(b,2)-4*a*c
>>> print(delta)
44.0
>>> x1=(-b-math.sqrt(delta))/(2*a)
>>> x2=(-b+math.sqrt(delta))/(2*a)
>>> print(x1,x2)
-1.4633249580710799 -0.13667504192892005
>>>