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

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