编写程序,校验键盘录入的电子邮箱是否合法,并测试。

编写程序,校验键盘录入的电子邮箱是否合法,并测试。,第1张

python编写程序,校验键盘录入的电子邮箱是否合法,并测试。

def check_email(email):
    postfix = email[-4:]
    for i in email:
        if len(email)>10 and i == '@' and postfix == '.com' and i!=' ':
            return True
        if i.isalpha() == False and i.isdigit() == False:
            if i != '.' and i != '@' and i != '_':
                return False
email = input('请输入一个邮箱地址:')
result=check_email(email)
if result==True:
    print('您输入的邮箱地址合法')
else:
    print('您输入的邮箱地址不合法')

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/869747.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存