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, reverse3 and does_include

Edit your script and use functions of both.

Run and test your script.

  1. You can import this using import 

  2. Do not forget to add a __init__.py 

  3. To reverse Strings you could use myString[::-1] or reversed(myString)