We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc86862 + dbd8937 commit e831de3Copy full SHA for e831de3
1 file changed
modules/45-logic/10-bool-type/ru/README.md
@@ -54,7 +54,7 @@ print(is_infant(0)) # => True
54
55
```python
56
def is_negative(number: int) -> bool:
57
- # Проверяем остаток от деления
+ # Проверяем, меньше ли число нуля
58
return number < 0
59
60
print(is_negative(-5)) # => True
0 commit comments