36. Recursion Functions in Python

preview_player
Показать описание
In this video, I discussed about Recursion Functions in Python.

Link for Python Playlist:

Link for Azure Synapse Analytics Playlist:

Link for Azure Data bricks Play list:

Link for Azure Functions Play list:

Link for Azure Basics Play list:

Link for Azure Data factory Play list:

Link for Azure Data Factory Real time Scenarios

Link for Azure Logic Apps playlist

#Python #Programming #vscode
Рекомендации по теме
Комментарии
Автор

small suggestion for calculating factorial if x ==0 or x == 1 return 1. because Factorial of 0 is also 1.

SwapnilVThorat
Автор

def outer_fun(a, b):
square = a ** 2

def addition(a, b):
return a + b
add = addition(a, b)
return add + 5

result = outer_fun(5, 10)
print(result)

#can anyone explain this code ?

vishwanathTL-nt
welcome to shbcf.ru