Selective Normalization ======================= We want to normalize a list of measures selectively, meaning that the normalization is done upon some measures (those indicated by the boolean values in an auxiliar list) only. You are required to deliver the following function in the module :mod:`selnorm` (file :file:`selnorm.py`): .. py:function:: selnorm(sL, mL) such that **given** - *sL*, a :class:`list` of :class:`bool` - *mL*, a :class:`list` of positive :class:`float` **updates** *mL* such that: - the positions where *sL* have the ``False`` value, get a 0.0 - the positions where *sL* have the ``True`` value are normalized (ie. they are all proportionally updated in order to sum 1.0). The normalized value must be rounded to 2 decimals. For example: .. literalinclude:: selnorm.test :language: python3 :start-after: --ini :end-before: --fi Doctests are available in the :download:`selnorm.test` file.