1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 17:24:29 +02:00
This commit is contained in:
Louie Dinh
2013-07-01 11:50:19 -07:00
parent e5d2150714
commit 0e0fed1e30

View File

@@ -447,7 +447,7 @@ print math.sqrt(16) #=> 4
# You can get specific functions from a module
from math import ceil, floor
print ceil(3.7) #=> 4.0
print floor3.7) #=> 3.0
print floor(3.7) #=> 3.0
# You can import all functions from a module.
# Warning: this is not recommended