Skip to content

Commit 0859e48

Browse files
authored
fix: typos (#59)
* Update 6_Booleans.ipynb Fixed the example of the operator "<". * Update 2_Arithmetics.ipynb * Update 4_Lists.ipynb * Update 5_String_Methods.ipynb
1 parent 0460c9a commit 0859e48

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

week01/2_Arithmetics.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
"\n",
231231
"<p style=\"text-align: right; direction: rtl; float: right;\">כאשר אנחנו עושים חלוקת שלמים מהצורה <code>A // B</code>, אנחנו למעשה מתכוונים לשאול:</p>\n",
232232
"\n",
233-
"<blockquote style=\"text-align: left; direction: ltr; float: right; border-left: 0; border-right: 5px solid #eeeeee;\"><p style=\"text-align: right; direction: rtl; float: left;\">אם יש לי A משולשי פיצה, וחילקתי את כל משלושי הפיצה באופן שווה ל־B ילדים (תזהרו מלחתוך לי את המשולשים!), כמה משולשי פיצה יקבל כל ילד?</p></blockquote>\n",
233+
"<blockquote style=\"text-align: left; direction: ltr; float: right; border-left: 0; border-right: 5px solid #eeeeee;\"><p style=\"text-align: right; direction: rtl; float: left;\">אם יש לי A משולשי פיצה, וחילקתי את כל משולשי הפיצה באופן שווה ל־B ילדים (תזהרו מלחתוך לי את המשולשים!), כמה משולשי פיצה יקבל כל ילד?</p></blockquote>\n",
234234
"\n",
235235
"<p style=\"text-align: right; direction: rtl; float: right;\">לדוגמה: הביטוי <code>4 // 9</code>, אומר שיש לנו 9 משולשי פיצה ו־4 ילדים רעבים.<br>אם נחלק את משולשי הפיצה בין הילדים, נגלה שכל ילד יקבל 2 משולשים, ושנשאר משולש אחד שלא ניתן לחלק.</p>"
236236
]

week02/4_Lists.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@
10041004
"print(\"1. 'Moshe' in pupils == \" + str('Moshe' in pupils))\n",
10051005
"print(\"2. 'Moshe' in pupils[0] == \" + str('Moshe' in pupils[0]))\n",
10061006
"print(\"3. ['Moshe', 'Splinter'] in pupils == \" + str(['Moshe', 'Splinter'] in pupils))\n",
1007-
"print(\"4. ['Moshe', 'Splinter'] in pupils[0] == \" + str(['Moshe', 'Splinter'] in pupils[-1]))\n",
1007+
"print(\"4. ['Moshe', 'Splinter'] in pupils[-1] == \" + str(['Moshe', 'Splinter'] in pupils[-1]))\n",
10081008
"print(\"5. ['Moshe', 'Dukasit', 'Splinter'] in pupils == \" + str(['Moshe', 'Dukasit', 'Splinter'] in pupils))\n",
10091009
"print(\"6. ['Moshe', 'Dukasit', 'Splinter'] in pupils[0] == \" + str(['Moshe', 'Dukasit', 'Splinter'] in pupils[0]))"
10101010
]

week02/5_String_Methods.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@
11121112
" </div>\n",
11131113
" <div style=\"width: 90%\">\n",
11141114
" <p style=\"text-align: right; direction: rtl; clear: both;\">\n",
1115-
" יש נטייה לשכוח את ה־<em>s</em> אחרי ה־<em>end</em> או את ה־<em>start</em> ב־<em>end<strong>s</strong>with</em> וב־<em>start<strong>s</strong>with</em>.\n",
1115+
" יש נטייה לשכוח את ה־<em>s</em> אחרי ה־<em>end</em> או ה־<em>start</em> ב־<em>end<strong>s</strong>with</em> וב־<em>start<strong>s</strong>with</em>.\n",
11161116
" </p>\n",
11171117
" </div>\n",
11181118
"</div>"

0 commit comments

Comments
 (0)