⟩ Please write A Reg Expression That Confirms An Email Id Using The Python Reg Expression Module <Re>?
Python has a regular expression module <re>.
Check out the <re> expression that can check the email id for .com and .co.in subdomain.
import re
print(re.search(r"[0-9a-zA-Z.]+@[a-zA-Z]+.(com|co.in)$","jhon.sina@gmail.com"))