(PYTHON & RECURSION) Write a new function, partial_countdown(count, step), that works just like countdown when starting below 10, but for numbers above 10, it only prints out multiples of step. Example:
>>> partial_countdown(20, 3)
18
15
12
10
9
8
7
6
5
4
3
2
1
Blastoff!