ma = re.match(r'[\w]@163.com$','imooc@163.comabc')
与下面的写法一样吗
ma = re.match(r'[\w]@163.com\Z','imooc@163.comabc')
多行问题