Merge pull request #2009 from fighterleslie/pr-math.sqrt

[python3/en] Correct math.sqrt(16)
This commit is contained in:
ven 2015-11-08 21:38:11 +01:00
commit a1ed02d6fa

View File

@ -689,7 +689,7 @@ i.age # => raises an AttributeError
# You can import modules
import math
print(math.sqrt(16)) # => 4
print(math.sqrt(16)) # => 4.0
# You can get specific functions from a module
from math import ceil, floor