Skip to content

Commit

Permalink
restructured, pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLeoni committed Nov 6, 2018
1 parent 50f807a commit dd93084
Show file tree
Hide file tree
Showing 35 changed files with 123,066 additions and 1,783 deletions.
6 changes: 3 additions & 3 deletions commandments.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"\n",
" # You shall not do any of such evil, no matter what the type of the parameter is:\n",
" i = 666 # basic types (int, float, ...)\n",
" s = \"666\" # strings\n",
" s = \"evil\" # strings\n",
" L = [666] # containers \n",
" D = {\"evil\":666} # dictionaries\n",
"\n",
Expand Down Expand Up @@ -159,7 +159,7 @@
" # mc = MyClass()\n",
" # mc.my_method()\n",
" # after the call mc will not point to {a:666}\n",
" self = ['666'] # self is only supposed to be a sort of dictionary and passed from outside\n",
" self = ['evil'] # self is only supposed to be a sort of dictionary and passed from outside\n",
" self = 6 # self is only supposed to be a sort of dictionary and passed from outside\n",
"```\n"
]
Expand All @@ -179,7 +179,7 @@
"```python\n",
"\n",
"my_fun() = 666\n",
"my_fun() = '666'\n",
"my_fun() = 'evil'\n",
"my_fun() = [666]\n",
"\n",
"```\n",
Expand Down
784 changes: 784 additions & 0 deletions exercises/binary-relations/binary-relations-solution.ipynb

Large diffs are not rendered by default.

0 comments on commit dd93084

Please sign in to comment.