mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Applies a1ed02d6fa
to translations
This commit is contained in:
parent
1421373f87
commit
7933ea3ce0
@ -566,7 +566,7 @@ Clovek.odkaslej_si() # => "*ehm*"
|
||||
|
||||
# Lze importovat moduly
|
||||
import math
|
||||
print(math.sqrt(16)) # => 4
|
||||
print(math.sqrt(16.0)) # => 4
|
||||
|
||||
# Lze také importovat pouze vybrané funkce z modulu
|
||||
from math import ceil, floor
|
||||
|
@ -478,7 +478,7 @@ Humano.roncar() #=> "*roncar*"
|
||||
|
||||
# Puedes importar módulos
|
||||
import math
|
||||
print(math.sqrt(16)) #=> 4
|
||||
print(math.sqrt(16)) #=> 4.0
|
||||
|
||||
# Puedes obtener funciones específicas desde un módulo
|
||||
from math import ceil, floor
|
||||
|
@ -627,7 +627,7 @@ Human.grunt() # => "*grunt*"
|
||||
|
||||
# On peut importer des modules
|
||||
import math
|
||||
print(math.sqrt(16)) # => 4
|
||||
print(math.sqrt(16)) # => 4.0
|
||||
|
||||
# On peut importer des fonctions spécifiques d'un module
|
||||
from math import ceil, floor
|
||||
|
@ -549,7 +549,7 @@ Human.grunt() #=> "*grunt*"
|
||||
|
||||
# Вы можете импортировать модули
|
||||
import math
|
||||
print(math.sqrt(16)) #=> 4
|
||||
print(math.sqrt(16)) #=> 4.0
|
||||
|
||||
# Вы можете импортировать отдельные функции модуля
|
||||
from math import ceil, floor
|
||||
|
@ -538,7 +538,7 @@ Insan.grunt() # => "*grunt*"
|
||||
|
||||
# Modülleri içe aktarabilirsiniz
|
||||
import math
|
||||
print(math.sqrt(16)) # => 4
|
||||
print(math.sqrt(16)) # => 4.0
|
||||
|
||||
# Modülden belirli bir fonksiyonları alabilirsiniz
|
||||
from math import ceil, floor
|
||||
|
@ -535,7 +535,7 @@ Human.grunt() # => "*grunt*"
|
||||
|
||||
# 用import导入模块
|
||||
import math
|
||||
print(math.sqrt(16)) # => 4
|
||||
print(math.sqrt(16)) # => 4.0
|
||||
|
||||
# 也可以从模块中导入个别值
|
||||
from math import ceil, floor
|
||||
|
Loading…
Reference in New Issue
Block a user