Question: IN PYTHON, given a string s, returns an acronym based on the first letter of each word in the string. def acronym1(s): >>> acronym1('United Postal

IN PYTHON, given a string s, returns an acronym based on the first letter of each word in the string.

def acronym1(s):

>>> acronym1('United Postal Service')

'UPS'

>>> acronym1('United State of America')

'USA'

# write the code in PYTHON below

Given a string s, returns an acronym based on all uppercase letters in the string.

def acronym2(s):

>>> acronym2('University of Boston')

'UB'

>>> acronym2('HyperText Markup Language')

'HTML'

# write the code in PYTHON below

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!