摘要: 1. 用正则表达式判定邮箱是否输入正确。 r='^(\w)+(\.\w+)*@(\w)+((\.\w{2,3}){1,3})$' e='837760717@qq.com' if re.match(r,e): print(re.match(r,e)) else: print('格式错误!') 2. 用 阅读全文
posted @ 2018-04-10 21:20 195陈冠中 阅读(127) 评论(0) 推荐(0) 编辑