Even Number of Customers |2| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In this question, the task is for helping a shop owner who wants to know whether there are even number of customers in her shop at any time. Whenever she needs the answer, she should call *even_customers* function with no argument and this function must return ``True`` or ``False`` according to the number of customers in the shop being even or odd respectively. To keep track of the incoming and outgoing customers, she will call *incoming* and *outgoing* functions. These functions do not take any arguments and do not return anything. *Hint:* Think about using a ``global`` variable which is accessible to all three functions. .. container:: sampleio Sample I/O: .. |2| image:: ../../figures/difficulty_three.png :class: difficulty .. code:: default >>> from even_customers import * >>> incoming() >>> incoming() >>> incoming() >>> even_customers() False >>> outgoing() >>> even_customers() True In these sample calls, as 3 consecutive calls of *incoming* function shows, 3 customers arrived to the shop. That’s why the first call of *even_customers* function returns ``False``. Then a customer left, as indicated by the call of *outgoing* function. At that time, there were 2 customers in the shop, therefore, the second call of *even_customers* returns ``True``. .. raw:: html .. raw:: html