diff options
author | Spurlow <Spurlow@users.noreply.github.com> | 2015-11-27 11:39:14 +0700 |
---|---|---|
committer | Spurlow <Spurlow@users.noreply.github.com> | 2015-11-27 11:39:14 +0700 |
commit | 812fa4bab4f784df75de4ddd1c4c67eb214b2f88 (patch) | |
tree | 5692ca79ee9c8b7d2264f0deae763bc8211c2d19 /fr-fr/python3-fr.html.markdown | |
parent | 5fcdfdf06c417b6e7cfd9c23e82f7b48577b5820 (diff) | |
parent | 7933ea3ce029a3418bac04210e0dd7f0f27e275d (diff) |
Merge pull request #2035 from Gnomino/master
[python3/cs] [python3/es] [python3/fr] [python3/ru] [python3/tr] [python3/zh] Corrects the result of math.sqrt(16)
Diffstat (limited to 'fr-fr/python3-fr.html.markdown')
-rw-r--r-- | fr-fr/python3-fr.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/python3-fr.html.markdown b/fr-fr/python3-fr.html.markdown index 04d0a55d..3d60157c 100644 --- a/fr-fr/python3-fr.html.markdown +++ b/fr-fr/python3-fr.html.markdown @@ -627,7 +627,7 @@ Human.grunt() # => "*grunt*" # On peut importer des modules import math -print(math.sqrt(16)) # => 4 +print(math.sqrt(16)) # => 4.0 # On peut importer des fonctions spécifiques d'un module from math import ceil, floor |