Skip to content

Commit

Permalink
Merge pull request #590 from datacarpentry/fix-comparison-operator-list
Browse files Browse the repository at this point in the history
Add consistency to comparison operators list
  • Loading branch information
quist00 authored Feb 21, 2024
2 parents f158abc + 3f46d07 commit e4826ed
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions episodes/03-index-slice-subset.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,9 +508,10 @@ Experiment with selecting various subsets of the "surveys" data.

- Equals: `==`
- Not equals: `!=`
- Greater than, less than: `>` or `<`
- Greater than or equal to `>=`
- Less than or equal to `<=`
- Greater than: `>`
- Less than: `<`
- Greater than or equal to: `>=`
- Less than or equal to: `<=`

::::::::::::::::::::::::::::::::::::::: challenge

Expand Down

0 comments on commit e4826ed

Please sign in to comment.