skyrimmaster429 skyrimmaster429 08-07-2020 Computers and Technology contestada What is the output of the following Python statements? def recurse(a): if (a == 0): print(a) else: recurse(a) recurse(0)