Python 多个分隔符 读取逗号和空格分开的数据时间:2021-04-23 18:20:39str.split() 清除默认 空格和tab 对空格数量不敏感 str.split(' ') 只清除一个空格 对空格数量敏感 l = re.split('[^0-9.]+',s.strip())