Display Text

(Menu)   A   B   C   D   E   F   G   H   I

The reason for the while loop will be explained later.
while True:
    print
    print '    Menu'
    print '    ===='
    print
    print '  1 - ...'
    print '  2 - ...'
    print '  3 - ...'
    print '  0 - Exit'
    print
    break

raw_input("  Press 'Enter' to close: ")
The break is a temporary statement so that the loop runs only once.

Live Links:       demo26_02D.txt       demo26_02D.pyc