Skip to content

Commit ed69ec6

Browse files
author
Marcel Frueh (Buero)
committed
Updates
1 parent b15ec55 commit ed69ec6

File tree

13 files changed

+1066
-545
lines changed

13 files changed

+1066
-545
lines changed

04-Milestone Project - 1/01-Milestone Project 1 - Assignment.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"* The board should be printed out every time a player makes a move\n",
2828
"* You should be able to accept input of the player position and then place a symbol on the board\n",
2929
"\n",
30-
"Feel free to use Google to help you figure anything out (but don't just Google \"Tic Tac Toe in Python\" otherwise you won't learn anything!) Keep in mind that this project can take anywhere between several hours to several days.\n",
30+
"Feel free to use Google or any chatbot to help you figure anything out (but don't just ask \"Tic Tac Toe in Python\" otherwise you won't learn anything!) Keep in mind that this project can take anywhere between several hours to several days.\n",
3131
"\n",
3232
"There are 4 Jupyter Notebooks related to this assignment:\n",
3333
"\n",
@@ -51,9 +51,9 @@
5151
],
5252
"metadata": {
5353
"kernelspec": {
54-
"display_name": "Python 3",
54+
"display_name": "Python [conda env:base] *",
5555
"language": "python",
56-
"name": "python3"
56+
"name": "conda-base-py"
5757
},
5858
"language_info": {
5959
"codemirror_mode": {
@@ -65,9 +65,9 @@
6565
"name": "python",
6666
"nbconvert_exporter": "python",
6767
"pygments_lexer": "ipython3",
68-
"version": "3.6.6"
68+
"version": "3.12.2"
6969
}
7070
},
7171
"nbformat": 4,
72-
"nbformat_minor": 1
72+
"nbformat_minor": 4
7373
}

05-Object Oriented Programming/01-Object Oriented Programming.ipynb

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
{
1515
"cell_type": "markdown",
1616
"metadata": {
17-
"collapsed": true
17+
"collapsed": true,
18+
"jupyter": {
19+
"outputs_hidden": true
20+
}
1821
},
1922
"source": [
2023
"# Object Oriented Programming\n",
@@ -40,7 +43,10 @@
4043
"cell_type": "code",
4144
"execution_count": 1,
4245
"metadata": {
43-
"collapsed": true
46+
"collapsed": true,
47+
"jupyter": {
48+
"outputs_hidden": true
49+
}
4450
},
4551
"outputs": [],
4652
"source": [
@@ -173,7 +179,10 @@
173179
"cell_type": "code",
174180
"execution_count": 5,
175181
"metadata": {
176-
"collapsed": true
182+
"collapsed": true,
183+
"jupyter": {
184+
"outputs_hidden": true
185+
}
177186
},
178187
"outputs": [],
179188
"source": [
@@ -260,7 +269,10 @@
260269
"cell_type": "code",
261270
"execution_count": 8,
262271
"metadata": {
263-
"collapsed": true
272+
"collapsed": true,
273+
"jupyter": {
274+
"outputs_hidden": true
275+
}
264276
},
265277
"outputs": [],
266278
"source": [
@@ -278,7 +290,10 @@
278290
"cell_type": "code",
279291
"execution_count": 9,
280292
"metadata": {
281-
"collapsed": true
293+
"collapsed": true,
294+
"jupyter": {
295+
"outputs_hidden": true
296+
}
282297
},
283298
"outputs": [],
284299
"source": [
@@ -435,7 +450,10 @@
435450
"cell_type": "code",
436451
"execution_count": 14,
437452
"metadata": {
438-
"collapsed": true
453+
"collapsed": true,
454+
"jupyter": {
455+
"outputs_hidden": true
456+
}
439457
},
440458
"outputs": [],
441459
"source": [
@@ -724,7 +742,10 @@
724742
"cell_type": "code",
725743
"execution_count": 23,
726744
"metadata": {
727-
"collapsed": true
745+
"collapsed": true,
746+
"jupyter": {
747+
"outputs_hidden": true
748+
}
728749
},
729750
"outputs": [],
730751
"source": [
@@ -781,10 +802,6 @@
781802
"\n",
782803
"For more great resources on this topic, check out:\n",
783804
"\n",
784-
"[Jeff Knupp's Post](https://jeffknupp.com/blog/2014/06/18/improve-your-python-python-classes-and-object-oriented-programming/)\n",
785-
"\n",
786-
"[Mozilla's Post](https://developer.mozilla.org/en-US/Learn/Python/Quickly_Learn_Object_Oriented_Programming)\n",
787-
"\n",
788805
"[Tutorial's Point](http://www.tutorialspoint.com/python/python_classes_objects.htm)\n",
789806
"\n",
790807
"[Official Documentation](https://docs.python.org/3/tutorial/classes.html)"
@@ -811,5 +828,5 @@
811828
}
812829
},
813830
"nbformat": 4,
814-
"nbformat_minor": 1
831+
"nbformat_minor": 4
815832
}

0 commit comments

Comments
 (0)