1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-09 06:10:43 +02:00

Type correction for the output of math.sqrt() propagated across versions and languages

This commit is contained in:
Anindya Srivastava
2019-02-06 07:26:25 +05:30
parent fa9f9fd563
commit 9b5b5f6d31
17 changed files with 17 additions and 17 deletions

View File

@@ -464,7 +464,7 @@ Humano.ronca() #=> "*arrrrrrr*"
# Você pode importar módulos
import math
print math.sqrt(16) #=> 4
print math.sqrt(16) #=> 4.0
# Você pode importar funções específicas de um módulo
from math import ceil, floor

View File

@@ -647,7 +647,7 @@ Human.grunt() # => "*grunt*"
# Você pode importar módulos
import math
print(math.sqrt(16)) # => 4
print(math.sqrt(16)) # => 4.0
# Você pode importar apenas funções específicas de um módulo
from math import ceil, floor