9 lines
101 B
Python
9 lines
101 B
Python
|
# module math
|
||
|
|
||
|
import math
|
||
|
|
||
|
math.pi
|
||
|
math.sqrt(5) # racine carré
|
||
|
|
||
|
f = float(input("Valeur reel : "))
|