You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/06_imports.ipynb
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -164,10 +164,9 @@
164
164
"import mymodule\n",
165
165
"```\n",
166
166
"\n",
167
-
"A Python module (any `.py` file) might contain code that we want to run (for example as a one-off script) along code that we only want to use somewhere else. \n",
168
-
"We can isolate the part of the code that we want to run as a script with this trick.\n",
167
+
"A Python module (any `.py` file) might contain code that we want to run as a script alongside code that we only want to use somewhere else (importing parts of it).\n",
169
168
"\n",
170
-
"That's easier to show than to explain, so let's do some exercises."
169
+
"We can isolate part of the code that we want to run as a script with a trick that's easier to show than to explain, so let's do some exercises."
0 commit comments