Parking ======== The price of a parking is calculated in the following way: - For a time under 60 minutes, the rate is 1.80€. - For more than 60 minutes, the rate is of 1.80€ plus 0.02€ for each minute that exceeds the initial 60 minutes. - If the car is parked more than 10 hours, the rate is 13€ without taking into account the previous criteria. 1. Write the function :py:func:`price1` that given the time in minutes that a car has been parked in this parking, returns the price to pay (``float``). Save this function into a file named :file:`parking1.py`. Examples: .. literalinclude:: parking1.txt :language: python3 :lines: 2- .. note:: More tests are provided in the :download:`parking1.txt ` 2. Write the function :py:func:`price2` that given the time in minutes, that a car has been parked in this parking, returns the price to pay as two integer values: euros and cents. Save this function into a file named :file:`parking2.py`. Examples: .. literalinclude:: parking2.txt :language: python3 :lines: 2- .. note:: More tests are provided in the :download:`parking2.txt ` .. rubric:: Solutions A solution of these functions is provided in the :download:`parking1.py ` i :download:`parking2.py `