✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will be the order of numbers printed by the following Python code?
def PrintNumbers(i, n):
if(i == n):
print(n)
else:
print(i)
PrintNumbers(i+1, n)
print(i)
PrintNumbers(0, 5)