👤

(PYTHON & use recursion) Write a new function, countdown_evens(count), that works just like countdown, except it only prints even numbers. Example:
>>> countdown_evens(9)
8
6
4
2
Blastoff!