Sum of fifteenth number of algebra | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Sum of fifteenth number of algebra

plz tell

29th Dec 2017, 1:04 PM
Vishnu Thakur
2 Answers
+ 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