Hi.
I'm giving my first steps on python... I saw that we don't have switch case statment, so I would you guys implement a text Menu in python?
Thanks
|
2
|
Hi. I'm giving my first steps on python... I saw that we don't have switch case statment, so I would you guys implement a text Menu in python? Thanks
|
||
|
|
|
|
You might do something like this:
This puts all your possible actions' functions into a dictionary, with the key being what you will input to run the function. It then retrieves the action input action from the list, unless the input action doesn't exist, in which case it retrieves no_such_action. After you have a basic understanding of how this works, if you're considering doing a Serious Business command-line–type application, I would look at the |
||
|
|
|
|
You can use if...elif. If you have to choose a number, it would be like this:
|
||
|
|
|
Have a look at this topic from "An Introduction to Python" book. Switch statement is substituted by an if..elif..elif sequence. |
||
|
|
|
|
Generally if elif will be fine, but if you have lots of cases, please consider using a dict.
|
||
|
|
|
|
How can I do a exit? In c my Menus are like: do { printf "Menu" Swith case statment } while (option < 8) so when I put an 8 I exit from my program... How can I do that here in python? How can I exit from the program? |
||
|
|
|
To your first question I agree with Ali A. To your second question : import sys |
||
|
|