Let's say this:
print """
Wleomce...
* To start the quiz press <s>
* For more information quiz press <i>
* To exit press <q>
"""
main_menu = raw_input('Your choice: ').lower().strip()
if mai_menu == 's':
print """\
* Press <n> to write yoyr name.
* Press <l> to choice your level.
* Press <b> to go back to the main menu.
"""
...
...
..
I want to control the menu as this psuedocode:
press <m> to go back to the main menu
press <l> to go back to the level menu
...
..