mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Type correction for the output of math.sqrt() propagated across versions and languages
This commit is contained in:
parent
fa9f9fd563
commit
9b5b5f6d31
@ -572,7 +572,7 @@ Clovek.odkaslej_si() # => "*ehm*"
|
|||||||
|
|
||||||
# Lze importovat moduly
|
# Lze importovat moduly
|
||||||
import math
|
import math
|
||||||
print(math.sqrt(16.0)) # => 4
|
print(math.sqrt(16.0)) # => 4.0
|
||||||
|
|
||||||
# Lze také importovat pouze vybrané funkce z modulu
|
# Lze také importovat pouze vybrané funkce z modulu
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -442,7 +442,7 @@ Human.grunt() #=> "*grunt*"
|
|||||||
|
|
||||||
# Wir können Module importieren
|
# Wir können Module importieren
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# Wir können auch nur spezielle Funktionen eines Moduls importieren
|
# Wir können auch nur spezielle Funktionen eines Moduls importieren
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -555,7 +555,7 @@ Human.grunt() #=> "*grunt*"
|
|||||||
|
|
||||||
# Wir können Module importieren
|
# Wir können Module importieren
|
||||||
import math
|
import math
|
||||||
print(math.sqrt(16)) #=> 4
|
print(math.sqrt(16)) #=> 4.0
|
||||||
|
|
||||||
# Wir können auch nur spezielle Funktionen eines Moduls importieren
|
# Wir können auch nur spezielle Funktionen eines Moduls importieren
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -467,7 +467,7 @@ Humano.roncar() #=> "*roncar*"
|
|||||||
|
|
||||||
# Puedes importar módulos
|
# Puedes importar módulos
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# Puedes obtener funciones específicas desde un módulo
|
# Puedes obtener funciones específicas desde un módulo
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -444,7 +444,7 @@ Human.grunt() #=> "*grunt*"
|
|||||||
|
|
||||||
# On peut importer des modules
|
# On peut importer des modules
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# Et récupérer des fonctions spécifiques d'un module
|
# Et récupérer des fonctions spécifiques d'un module
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -656,7 +656,7 @@ i.age # => AttributeError hibát dob
|
|||||||
# Modulokat így lehet importálni
|
# Modulokat így lehet importálni
|
||||||
import math
|
import math
|
||||||
|
|
||||||
print math.sqrt(16) # => 4
|
print math.sqrt(16) # => 4.0
|
||||||
|
|
||||||
# Lehetséges csak bizonyos függvényeket importálni egy modulból
|
# Lehetséges csak bizonyos függvényeket importálni egy modulból
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -640,7 +640,7 @@ i.age # => Emette un AttributeError
|
|||||||
|
|
||||||
# Puoi importare moduli
|
# Puoi importare moduli
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) # => 4
|
print math.sqrt(16) # => 4.0
|
||||||
|
|
||||||
# Puoi ottenere specifiche funzione da un modulo
|
# Puoi ottenere specifiche funzione da un modulo
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -441,7 +441,7 @@ Human.grunt() #=> "*grunt*"
|
|||||||
|
|
||||||
# 다음과 같이 모듈을 임포트할 수 있습니다.
|
# 다음과 같이 모듈을 임포트할 수 있습니다.
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# 모듈의 특정 함수를 호출할 수 있습니다.
|
# 모듈의 특정 함수를 호출할 수 있습니다.
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -532,7 +532,7 @@ Czlowiek.grunt() # => "*grunt*"
|
|||||||
|
|
||||||
# Tak importuje się moduły:
|
# Tak importuje się moduły:
|
||||||
import math
|
import math
|
||||||
print(math.sqrt(16)) # => 4
|
print(math.sqrt(16)) # => 4.0
|
||||||
|
|
||||||
# Można podać konkretne funkcje, np. ceil, floor z modułu math
|
# Można podać konkretne funkcje, np. ceil, floor z modułu math
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -464,7 +464,7 @@ Humano.ronca() #=> "*arrrrrrr*"
|
|||||||
|
|
||||||
# Você pode importar módulos
|
# Você pode importar módulos
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# Você pode importar funções específicas de um módulo
|
# Você pode importar funções específicas de um módulo
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -647,7 +647,7 @@ Human.grunt() # => "*grunt*"
|
|||||||
|
|
||||||
# Você pode importar módulos
|
# Você pode importar módulos
|
||||||
import math
|
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
|
# Você pode importar apenas funções específicas de um módulo
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -449,7 +449,7 @@ Om.exclama() #=> "*Aaaaaah*"
|
|||||||
|
|
||||||
# Pentru a folosi un modul, trebuie importat
|
# Pentru a folosi un modul, trebuie importat
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# Putem importa doar anumite funcţii dintr-un modul
|
# Putem importa doar anumite funcţii dintr-un modul
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -541,7 +541,7 @@ Human.grunt() #=> "*grunt*"
|
|||||||
|
|
||||||
# Вы можете импортировать модули
|
# Вы можете импортировать модули
|
||||||
import math
|
import math
|
||||||
print(math.sqrt(16)) #=> 4
|
print(math.sqrt(16)) #=> 4.0
|
||||||
|
|
||||||
# Вы можете импортировать отдельные функции модуля
|
# Вы можете импортировать отдельные функции модуля
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -458,7 +458,7 @@ Human.grunt() #=> "*grunt*"
|
|||||||
|
|
||||||
# Modülleri sayfaya dahil edebilirsiniz
|
# Modülleri sayfaya dahil edebilirsiniz
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) #=> 4
|
print math.sqrt(16) #=> 4.0
|
||||||
|
|
||||||
# Modül içerisinden spesifik bir fonksiyonu getirebilirsiniz
|
# Modül içerisinden spesifik bir fonksiyonu getirebilirsiniz
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -654,7 +654,7 @@ i.age # => виникає помилка атрибуту
|
|||||||
# Ви можете імпортувати модулі
|
# Ви можете імпортувати модулі
|
||||||
import math
|
import math
|
||||||
|
|
||||||
print(math.sqrt(16)) # => 4
|
print(math.sqrt(16)) # => 4.0
|
||||||
|
|
||||||
# Ви можете імпортувати окремі функції з модуля
|
# Ви можете імпортувати окремі функції з модуля
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -439,7 +439,7 @@ Human.grunt() # => "*grunt*"
|
|||||||
|
|
||||||
# 我们可以导入其他模块
|
# 我们可以导入其他模块
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) # => 4
|
print math.sqrt(16) # => 4.0
|
||||||
|
|
||||||
# 我们也可以从一个模块中导入特定的函数
|
# 我们也可以从一个模块中导入特定的函数
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@ -627,7 +627,7 @@ i.age # => raises an AttributeError
|
|||||||
|
|
||||||
# 你可以引入模組來做使用
|
# 你可以引入模組來做使用
|
||||||
import math
|
import math
|
||||||
print math.sqrt(16) # => 4
|
print math.sqrt(16) # => 4.0
|
||||||
# math.sqrt()為取根號
|
# math.sqrt()為取根號
|
||||||
|
|
||||||
# 你可以只從模組取出特定幾個函式
|
# 你可以只從模組取出特定幾個函式
|
||||||
|
Loading…
Reference in New Issue
Block a user