Skip to content

Commit 00a6f5d

Browse files
committed
Small fixes to README, week7
1 parent 4e93143 commit 00a6f5d

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<div dir="rtl">
1+
2+
<div dir="rtl" markdown="1">
23

34
<p align="center">
45
<img src="week1/images/logo.jpg" style="display: block; margin-left: auto; margin-right: auto;" alt="לוגו של מיזם לימוד הפייתון. נחש מצויר בצבעי צהוב וכחול, הנע בין האותיות של שם הקורס: לומדים פייתון. הסלוגן המופיע מעל לשם הקורס הוא מיזם חינמי ללימוד תכנות בעברית.">

week7/1_Classes.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2014,8 +2014,8 @@
20142014
"metadata": {},
20152015
"source": [
20162016
"<p style=\"text-align: right; direction: rtl; float: right; clear: both;\">\n",
2017-
" כתבו פונקציה בשם <var>plot_walks</var>, שמקבלת כפרמטר את מספר הצעדים של קטניס.<br>\n",
2018-
" הפונקציה תצייר מפת נקודות בגודל 4 על 4, שכל נקודה בה מציינת מקום שקטניס סימנה במפה שלה.<br>\n",
2017+
" כתבו פעולה בשם <var>plot_walks</var>, שמקבלת כפרמטר את מספר הצעדים של קטניס.<br>\n",
2018+
" הפעולה תצייר מפת נקודות בגודל 4 על 4, שכל נקודה בה מציינת מקום שקטניס סימנה במפה שלה.<br>\n",
20192019
"</p>"
20202020
]
20212021
},

week7/2_Documentation.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@
261261
"metadata": {},
262262
"outputs": [],
263263
"source": [
264-
"snake_y = snake_y % 10 # Take the reminder from 10"
264+
"snake_y = snake_y % 10 # Take the remainder from 10"
265265
]
266266
},
267267
{
@@ -694,8 +694,8 @@
694694
"source": [
695695
"\"\"\"A demonstration of writing well documented Python code.\n",
696696
"\n",
697-
"This snippet demonstrates how well documented code should look\n",
698-
"like. Each method and class is documented, and there is also\n",
697+
"This snippet demonstrates how a well documented code should look.\n",
698+
"Each method and class is documented, and there is also\n",
699699
"documentation for the script itself.\n",
700700
"\"\"\"\n",
701701
"import os\n",
@@ -1300,7 +1300,7 @@
13001300
"\n",
13011301
" Examples:\n",
13021302
" After creating a PO box and sending a letter,\n",
1303-
" the recipient should have 1 messege in the\n",
1303+
" the recipient should have 1 message in the\n",
13041304
" inbox.\n",
13051305
"\n",
13061306
" >>> po_box = PostOffice(['a', 'b'])\n",

0 commit comments

Comments
 (0)