Discuss / Python / 第一题

第一题

Topic source

无虑43793

#1 Created at ... [Delete] [Delete and Lock User]

def is_valid_email(addr): if re.match('^\w+\@[a-zA-Z]+.com$',addr): return True return False


  • 1

Reply