Feedback for these lessons is very much welcome. If you like or hate something about a lesson let us know, either on GitHub, via Mail or just tell us in person :)
x
Modules and Packages
Step 1
Write a module basicmath.py
with functions to add, subtract, multiply and divide two values.
Write a script that uses this module 1 and call some functions of this module.
Run this script.
Step 2
Write a second module stringopts.py
and group this and the first one in a Package.2
stringopts
should include functions that are called get_length
, reverse
3 and does_include
Edit your script and use functions of both.
Run and test your script.