Enter Option

[Back] <- - + - -> [Next]

Use raw_input to display a prompt and accept input from the keyboard.
# previous code
print                                       ### Note the underscore _ (not a hyphen -)
option = raw_input('Enter your choice: ')   ### Note the space between the : and the ')
                                            ### It inserts a space before the user's choice.

Running the code produces this output:
  Menu
  ====

a AAA
b BBB
c CCC

Enter your choice: b
   
 

You can enter a value but nothing more will happen yet.