Skip to content

Update 6_Booleans.ipynb #1 #51

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion week01/6_Booleans.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
"| True | 4 == 4 | האם צד שמאל שווה לצד ימין | == |\n",
"| False | 4 != 4 | האם צד שמאל שונה מצד ימין | != |\n",
"| True | 5 > 4 | האם צד שמאל גדול יותר מצד ימין | > |\n",
"| False | 4 > 5 | האם צד שמאל קטן יותר מצד ימין | < |\n",
"| False | 5 < 4 | האם צד שמאל קטן יותר מצד ימין | < |\n",
"| False | 2 >= 4 | האם צד שמאל גדול או שווה לצד ימין | >= |\n",
"| True | 4 <= 5 | האם צד שמאל קטן או שווה לצד ימין | <= |\n",
"| True | 'hell' in 'hello' | האם צד שמאל נמצא ברצף בצד ימין | in |"
Expand Down