Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Python, I have written the following function: def domainfunc(email = ''): s = input() domain = re.search('@w+', s) return(domain) The goal of the function

In Python, I have written the following function:

def domainfunc(email = ''): s = input() domain = re.search('@\w+', s) return(domain)

The goal of the function is to take an email address and return only the domain name. For example, if I put in Johndoe@aoldotcom, then it should only return aol, not any other portion such the @ symbol or .com or Johndoe. so far, it returns correctly except I can't figure out a way to get rid of the @ symbol and it needs to be done using regular expressions. Thanks for the help!

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

What are two types of accounting methods? GAAP prefers which type?

Answered: 1 week ago