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

Error on codeacadamy lesson on functions Practice Makes Perfect: This is my code: def by_three(n): if n % 3 == 0: cube(n) return n else: return False def cube(x): return x ** 3 by_three(11) by_three(12) by_three(13)

OpenStudy (anonymous):

what's the problem? Is it that it doesn't print out the answer? If so, simply change the ' return ' to 'print'

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!