We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
deffun(s):# return True if s is a valid email, else return Falseif(s.count("@")!=1ors.count(".")!=1):returnFalsename,web,ext=s.replace(".","@").split("@")name=name.replace("_","").replace("-","")if(notname.isalnum()ornotweb.isalnum()):returnFalseif(notext.isalpha()orlen(ext)<=0orlen(ext)>3):returnFalsereturnTrue
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Validating Email Addresses With a Filter
You are viewing a single comment's thread. Return to all comments →