Skip to content

Commit 47560bd

Browse files
committed
lesson 11 api fixed
1 parent be3a5f3 commit 47560bd

File tree

6 files changed

+1017
-1614
lines changed

6 files changed

+1017
-1614
lines changed

content/lessons/03/Class-Coding-Lab/CCL-Variables-And-Types.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@
377377
" \n",
378378
"Program Outputs:\n",
379379
"\n",
380-
"- Perimeter of yard ( 2 x (Length + Width))\n",
380+
"- Perimeter of yard ( Length multlplied by Width)\n",
381381
"- Number of fence sections required (Permiemer divided by 6 )\n",
382382
"- Total cost for fence ( fence sections multiplied by $23.95 )\n",
383383
" \n",

content/lessons/08/Class-Coding-Lab/CCL-Files.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"outputs": [],
3636
"source": [
37-
"filename = \"CCL-mbox-tiny.txt\"\n",
37+
"filename = \"ICCL-mbox-tiny.txt\"\n",
3838
"with open(filename, 'r') as f:\n",
3939
" for line in f.readlines():\n",
4040
" print(line.strip()) \n",

0 commit comments

Comments
 (0)