Skip to content

Commit

Permalink
Merge pull request #328 from Trisodium-ru/patch-1
Browse files Browse the repository at this point in the history
Исправлена ошибка в описании
  • Loading branch information
Malcom1986 authored Sep 11, 2024
2 parents 96f1c91 + 32ab248 commit 2c3878d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/45-logic/90-logical-expressions/ru/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ print(11 % 2 == 0 and 'yes' or 'no') # => 'no'
# 1 шаг
10 % 2 == 0 # True
# 2 шаг
True and 'yes' # Результат — истина
True and 'yes' # Результат — 'yes'
# Проверка на or выполняется, но правая часть не исполняется, так как сразу возвращается 'yes'

# Для нечетного
Expand Down

0 comments on commit 2c3878d

Please sign in to comment.