0
Regular expressions are used for pattern matching. A realtime use of this could be validation of the email id entered by the user. import re if not re.match(r"[^@]+@[^@]+\.[^@]+", email): print("Invalid email id Notify the user.")
30th Jan 2018, 1:25 PM
Ravi Chandra Enaganti
Ravi Chandra Enaganti - avatar