Skip to content

Commit

Permalink
swap word
Browse files Browse the repository at this point in the history
  • Loading branch information
zstumgoren committed Apr 8, 2024
1 parent da960ab commit a1bb07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/classes_and_oop/module_dot_something.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"\n",
"One of the first places you'll notice the dot notation is when importing and using Python [modules](https://docs.python.org/3/tutorial/modules.html).\n",
"\n",
"Modules are simply text files ending with a `.py` extension where you can store variables, functions and other bits of code. Coders use modules to help organize their software, grouping related bits of _reusable_ functionality into one or more modules. They typically try to give their modules sensible names that convey their purpose.\n",
"Modules are simply text files ending with a `.py` extension where you can store variables, functions and other bits of code. Pythonistas use modules to help organize their software, grouping related bits of _reusable_ functionality into one or more modules. They typically try to give their modules sensible names that convey their purpose.\n",
"\n",
"For example, to download files from the Internet, you might install the `requests` library and use it as follows:\n",
"\n",
Expand Down

0 comments on commit a1bb07a

Please sign in to comment.