Question: def earlier_name(name1: str, name2: str) -> str: Return the name, name1 or name2, that comes first alphabetically. >>> earlier_name('Jen', 'Paul') 'Jen' >>> earlier_name('Colin', 'Colin') 'Colin'

def earlier_name(name1: str, name2: str) -> str: """Return the name, name1 or name2, that comes first alphabetically. >>> earlier_name('Jen', 'Paul') 'Jen' >>> earlier_name('Colin', 'Colin') 'Colin' """def earlier_name(name1: str, name2: str) -> str: """Return the name, name1 or

def earlier_name (namel: str, name2: str) -> str: ""Return the name, namel or name2, that comes first alphabetically. 11 11 11 >>> earlier_name('Jen', 'Paul') 'Jen' >>> earlier_name('Colin', 'Colin') 'Colin' 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!