python_regex_split_1.py:
x
 
import re
str = "China is a great country"
x = re.split("\s", str)
print(x)