3 lines
93 B
Python
3 lines
93 B
Python
import re
|
|
text = "PythonTutorialAndExercises"
|
|
print(re.findall('[A-Z][^A-Z]*', text)) |