Applies a1ed02d6fa to translations

This commit is contained in:
Gnomino 2015-11-21 19:08:39 +01:00
parent 1421373f87
commit 7933ea3ce0
6 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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