Screen Link: Learn data science with Python and R projects
My Code:
pattern = r"[Pp]ython ([\d.]+)"
py_versions_freq = titles.str.extract(pattern, expand=False).value_counts()
print(py_versions_freq)
I expected the freq table will show Python/python plus the digital character. However, it only shows the digital character in freq table. Why?