python_regex_match_span.py:
x
 
import re
str = "China is a great country"
x = re.search(r"\bC\w+", str)
print(x.span())