Python之确定是否为合法邮箱地址

#是否为合法邮箱

email=input("请输入邮箱地址:")

index1=email.find("@")

index2=email.find(".")

if index1==-1:

    print("邮箱地址必须包括@")

elif index2==-1:

    print("邮箱地址必须包括.")

elif index2

    print("邮箱地址的最后一个.在@之后")

elif index2==len(email)-1:

    print("最后一个.后面要有其他字符")

else:

    print("这是一个合法的邮箱地址")

你可能感兴趣的:(python)