Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

def generateTemplates(madLibsForm): """ madLibsForm: string, in a Mad-Lib form. See output of `generateForm` returns: a list of '[ADJ]', '[VERB]', and '[NOUN]' strings, in the order they appear in the madLibsForm. """ Sample MadLibsForm -At the [ADJ] thrift [NOUN] I [VERB] a pair of [ADJ] [NOUN] that [VERB] like [NOUN] your [NOUN] might wear

OpenStudy (anonymous):

Its Python

OpenStudy (anonymous):

def generateTemplates(madLibsForm): """ madLibsForm: string, in a Mad-Lib form. See output of `generateForm` returns: a list of '[ADJ]', '[VERB]', and '[NOUN]' strings, in the order they appear in the madLibsForm. """ split = madLibsForm.split(' ') result = [] for element in split: if element == '[ADJ]' or element == '[VERB]' or element == '[NOUN]': result.append(element) return result

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!