We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96f1c91 + 32ab248 commit 2c3878dCopy full SHA for 2c3878d
modules/45-logic/90-logical-expressions/ru/README.md
@@ -104,7 +104,7 @@ print(11 % 2 == 0 and 'yes' or 'no') # => 'no'
104
# 1 шаг
105
10 % 2 == 0 # True
106
# 2 шаг
107
-True and 'yes' # Результат — истина
+True and 'yes' # Результат — 'yes'
108
# Проверка на or выполняется, но правая часть не исполняется, так как сразу возвращается 'yes'
109
110
# Для нечетного
0 commit comments