Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 14 Online
OpenStudy (anonymous):

whats the wrong with this code..?? def insert_new_lines(text, lenght): print insertNewLine(text,lenght) def insertNewLine(text, lenght): if len(text) < lenght: return text else: return ('\n' + insertNewLine(text[lenght:],lenght))

OpenStudy (turingtest):

You are chopping off the part of the text that is before your \n. Make sure to add that part on to the front of the recursive call at each recursion.

OpenStudy (turingtest):

It's a problem set question, or I wouldn't have helped.

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!