Quizes
Problems
Courses
Sign
Register
Main
/
Courses
/
Basics of Python
/
Recursion
Recursion
№ 3
/12
Рекурсия. Имитация циклов 2
Read Theory
Task
Исправьте рекурсивную процедуру таким образом, чтобы вывод осуществлялся в обратном порядке.
Hello N 10
…
Hello N 1
Prohibited operators:
for;while;until
Python
1
def LoopImitation(i, n):
2
print("Hello N", i)
3
if i < n:
4
LoopImitation(i + 1, n)
5
LoopImitation(1,10)
Your last submission is saved in the editor window.
Results:
All results: