Introduction to Recursion (Python Implementation) - Simply Explained

preview_player
Показать описание
The video is an introduction to recursion and has a code implementation in Python.
Рекомендации по теме
Комментарии
Автор

Great explanation and super informative!!

ojassingh
Автор

def summation(n):
if n == 1:
return 1
return n + summation(n - 1)


print(summation(5))

i think i did it. I understand recursion a lot better thanks to your explanations, so thank you.

Adam-cnib
visit shbcf.ru