有没有办法根据标点符号来打破字符串
#!/usr/bin/python
#Asking user to Enter a line in specified format
myString=raw_input('Enter your String:\nFor Example:I am doctor break I stays in CA break you can contact me on +000000\n')
# 'break' is punctuation word
<my code which breaks the user input based on break word and returns output in different lists>
期望输出像
String1:I am doctor
String2:I stays in CA
String2:you can contact me on +000000