Python
- Generate Email Verification Code in Python (With Source Code).
Description:
- This article shows you to generate email verification code in Python.
- The code is simple and easy to understand, and it can be easily modified to meet your specific needs.
- It is a simple and effective way to verify the authenticity of email addresses.
- Learn how to generate a email verification code in Python with this easy-to-follow tutorial.
- The code is well-commented and easy to understand, making it perfect for beginners.
Source code:
while True:
email = input("Enter your Email: ")
other_char = 0
if email[0].isalpha():
if ("@" in email) and (email.count("@") == 1) or ("_" in email):
if email[-3] == "." or email[-4] == ".":
for e in email:
if e.isspace():
print("incorrect Email")
break
elif e.isalpha():
if e.isupper() == True:
print("incorrect Email")
break
elif e == "@" or e == "_" or e == ".":
continue
else:
print("incorrect Email")
break
else:
print("correct Email")
else:
print("incorrect Email 3")
else:
print("incorrect Email 2")
else:
print("incorrect Email 1")
0 Comments