I am using Python 3.3. I have this string:
"Att education is secondary,primary,unknown"
now I need split the last three words (there may be more or only one) and create all possible combinations and save it to list. Like here:
"Att education is secondary"
"Att education is primary"
"Att education is unknown"
What is the easiest way to do it?