代码示例:(标识:python_regex_split_1)
python_regex_split_1.py
import re

str = "China is a great country"
x = re.split("\s", str)
print(x)
运行结果: