第二模块(函数编程(极速版))第二章-常用模块-练习题

# 1.验证手机号是否合法
import re

while True:
    phone = input("input phone_number:").strip()
    if re.search("^1",phone):
        if re.search("[0-9]{11}",phone):
            print("pass")
    else:
        print("fail")
     
#2.验证邮箱是否合法
import re
while True:
    email = input("input_email:").strip()
    if re.fullmatch("\w+@+\w+\.(com|cn|edu)",email):
        print("pass")
    else:
        print("fail")

你可能感兴趣的:(章节练习题,python)