I need to parse a series of short strings that are comprised of 3 parts: a question and 2 possible answers. The string will follow a consistent format:
This is the question "answer_option_1 is in quotes" "answer_option_2 is in quotes"
I need to identify the question part and the two possible answer choices that are in single or double quotes.
Ex.:
What color is the sky today? "blue" or "grey"
Who will win the game 'Michigan' 'Ohio State'
How do I do this in python?
Where's the problem? 'It's in the quotes.'– eumiro Nov 11 '10 at 16:24"blue" or "grey"not"blue" "grey"? – katrielalex Nov 11 '10 at 16:31