Skip to content

Commit c4e3225

Browse files
authored
maxim-belkin suggestion added.
1 parent fed01a8 commit c4e3225

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

_episodes/03-index-slice-subset.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,9 @@ x == 5
458458
~~~
459459
{: .language-python}
460460
461-
When we ask Python what the value of `x > 5` is, we get `False`. This is
462-
because the condition, `x` is greater than 5, is not met since `x` is equal
463-
to 5.
461+
When we ask Python whether `x` is greater than 5, it returns `False`.
462+
This is Python's way to say "No". Indeed, the value of `x` is 5,
463+
and 5 is not greater than 5.
464464
465465
To create a boolean mask:
466466

0 commit comments

Comments
 (0)