+ 2
I am trying to print the table of 12 using recursion method in python but there is some error
Pls help me below is my code https://code.sololearn.com/c9nJRVSEuTMn/?ref=app
4 ответов
+ 5
I don't know much about global variables, I hope someone will post it.
Here is an easy solution using parameter:
def fun(i):
print(12*i)
i=i+1
if i<=10:
fun(i)
fun(0)
You can also remove i = i + 1 and call fun(i+1)
+ 2
Thanks a lot oma falk and densie robberg
+ 1
Prabhjot Singh your welcome :)