
you can split a string on all non-word characters with re.split:
>>> import re
>>> re.split(r'\W', 'hello world, 2020-04-06, 333/blabla')
['hello', 'world', '', '2020', '04', '06', '', '333', 'blabla']
#python #python_tip
English
نتائج البحث: "#Python_tip"
15 نتائج















PROTIP: wanna get data from your Google Sheet into Python/R/etc? Don't mind if the data has a public link? It's as easy as this:



