Sum of fifteenth number of algebra | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Sum of fifteenth number of algebra

plz tell

29th Dec 2017, 1:04 PM
Vishnu Thakur
2 Réponses
+ 13
def recursion(n): if not n: return 0; return n+recursion(n-1); print(recursion(15)); #without tuples though...
29th Dec 2017, 1:26 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 1
thanks bro for answering this question
31st Dec 2017, 2:39 AM
Vishnu Thakur