Consecutive letters =================== Save all these functions in file :file:`consecutive.py` #. Write function :py:func:`consecutive_vowels` that, given a text (:class:`str`), returns the number of (overlapping) occurrences (:class:`int`) of 2 consecutive vowels in the text. Examples: .. literalinclude:: test-consecutive_vowels.txt :language: python3 :lines: 3- .. note:: More tests are provided in file :download:`test-consecutive_vowels.txt ` #. Write function :py:func:`consecutive_consonants` that, given a text (:class:`str`), returns the number of (overlapping) occurrences (:class:`int`) of 3 consecutive consonants in the text. Examples: .. literalinclude:: test-consecutive_consonants.txt :language: python3 :lines: 3- .. note:: More tests are provided in file :download:`test-consecutive_consonants.txt ` .. rubric:: Solution A solution of these functions is provided in the :download:`consecutive.py `