Skip to content

Commit

Permalink
modify comparison operator appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
jelletreep authored Feb 22, 2024
1 parent 6d8f7e2 commit 02b9ecd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions book/Introduction_to_python_2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@
"\n",
"Along with the `>` and `==` comparison operators that we have already used for comparing values above, there are a few more options to know about:\n",
"\n",
"- \\>: greater than\n",
"- \\<: less than\n",
"- ==: equal to\n",
"- !=: does not equal\n",
"- \\>=: greater than or equal to\n",
"- \\<=: less than or equal to\n",
"- `>` greater than\n",
"- `<` less than\n",
"- `==` equal to\n",
"- `!=` does not equal\n",
"- `>=` greater than or equal to\n",
"- `<=` less than or equal to\n",
"\n",
"Let's now play around with comparisons to see how they work in more detail."
]
Expand Down

0 comments on commit 02b9ecd

Please sign in to comment.