mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-10 16:54:33 +02:00
Applies a1ed02d6fa
to translations
This commit is contained in:
@@ -566,7 +566,7 @@ Clovek.odkaslej_si() # => "*ehm*"
|
|||||||
|
|
||||||
# Lze importovat moduly
|
# Lze importovat moduly
|
||||||
import math
|
import math
|
||||||
print(math.sqrt(16)) # => 4
|
print(math.sqrt(16.0)) # => 4
|
||||||
|
|
||||||
# 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
|
||||||
|
@@ -478,7 +478,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
|
||||||
|
@@ -627,7 +627,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
|
||||||
|
|
||||||
# On peut importer des fonctions spécifiques d'un module
|
# On peut importer des fonctions spécifiques d'un module
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@@ -549,7 +549,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
|
||||||
|
@@ -538,7 +538,7 @@ Insan.grunt() # => "*grunt*"
|
|||||||
|
|
||||||
# Modülleri içe aktarabilirsiniz
|
# Modülleri içe aktarabilirsiniz
|
||||||
import math
|
import math
|
||||||
print(math.sqrt(16)) # => 4
|
print(math.sqrt(16)) # => 4.0
|
||||||
|
|
||||||
# Modülden belirli bir fonksiyonları alabilirsiniz
|
# Modülden belirli bir fonksiyonları alabilirsiniz
|
||||||
from math import ceil, floor
|
from math import ceil, floor
|
||||||
|
@@ -535,7 +535,7 @@ Human.grunt() # => "*grunt*"
|
|||||||
|
|
||||||
# 用import导入模块
|
# 用import导入模块
|
||||||
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
|
||||||
|
Reference in New Issue
Block a user