I have an application that has a couple of commands. When you type a certain command, you have to type in additional info about something/someone. Now that info has to be strictly an integer or a string, depending on the situation.
However, whatever you type into Python using raw_input() actually is a string, no matter what, so more specifically, how would I shortly and without try...except see if a variable is made of digits or characters?
"0".isdigit(). Documentation: docs.python.org/2/library/stdtypes.html#str.isdigittry..excepthere? This is exactly what you'd use exception handling for.