refer:
https://www.cnpython.com/qa/62434
import re
def word_effective():
title = re.sub("[\W\d]", "_", title.strip())
return title
refer:
https://www.cnpython.com/qa/62434
import re
def word_effective():
title = re.sub("[\W\d]", "_", title.strip())
return title