Python Forum
Translator - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: Translator (/thread-8249.html)

Pages: 1 2


RE: Translator - Larz60+ - Feb-13-2018

Looks good!


RE: Translator - Zatoichi - Feb-14-2018

How do I fix the recursion part when they ask for more than one translation?


RE: Translator - Larz60+ - Feb-14-2018

There's no recursion.
you use a loop, like the pseudo code I post #9.
loop with input, when 'quit', or exit or something like that is types (you of course have to check for it), break out of the loop.
(with break command)


RE: Translator - Zatoichi - Feb-15-2018

Thanks for all the help!