summaryrefslogtreecommitdiffhomepage
path: root/ru-ru
diff options
context:
space:
mode:
authorSpurlow <Spurlow@users.noreply.github.com>2015-11-27 11:39:14 +0700
committerSpurlow <Spurlow@users.noreply.github.com>2015-11-27 11:39:14 +0700
commit812fa4bab4f784df75de4ddd1c4c67eb214b2f88 (patch)
tree5692ca79ee9c8b7d2264f0deae763bc8211c2d19 /ru-ru
parent5fcdfdf06c417b6e7cfd9c23e82f7b48577b5820 (diff)
parent7933ea3ce029a3418bac04210e0dd7f0f27e275d (diff)
Merge pull request #2035 from Gnomino/master
[python3/cs] [python3/es] [python3/fr] [python3/ru] [python3/tr] [python3/zh] Corrects the result of math.sqrt(16)
Diffstat (limited to 'ru-ru')
-rw-r--r--ru-ru/python3-ru.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ru-ru/python3-ru.html.markdown b/ru-ru/python3-ru.html.markdown
index 2a7b3f7b..2b6b59a7 100644
--- a/ru-ru/python3-ru.html.markdown
+++ b/ru-ru/python3-ru.html.markdown
@@ -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