73533/write-expression-confirms-email-python-expression-module
Hi, @Team,
Please help needed! How to a write reg expression that confirms an email id using the python reg expression module “re”? Explain?
Hey, @Roshni,
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)$","micheal.pages@mp.com"))
Here's the logic. You have to add ...READ MORE
Here's the code: check = input("Enter the character: ...READ MORE
Hi@akhtar, In Python, you can use the os. remove() method to remove ...READ MORE
Here is an easy solution: def numberToBase(n, b): ...READ MORE
You can also use the random library's ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
Enumerate() method adds a counter to an ...READ MORE
You can simply the built-in function in ...READ MORE
FWIW, the multiprocessing module has a nice interface for ...READ MORE
Hey, Web scraping is a technique to automatically ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.