Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 14 Online
OpenStudy (anonymous):

Okay, this is weird. This code is printing NOTHING. It's supposed to do recursion : n=3 def countdown(n): if n == 0: print "Blastoff!" else: print n countdown(n-1)

OpenStudy (anonymous):

You have to call the function countdown(3)

OpenStudy (anonymous):

Of course! I just figured that out, thanks for your help. Yeesh, always feel stupido when I blow these.

OpenStudy (anonymous):

.:-)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!