python中string自带的split不支持多个分隔符同时切分,用正则

import re

line='hello,world'

lineLists = re.split('[,,.。??]',line.strip())

05-13 20:10