python中string自带的split不支持多个分隔符同时切分,用正则import reline='hello,world'lineLists = re.split('[,,.。??]',line.strip())