Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

in python (35 Points) Write a function madlibs0 that takes in 4 parameters. A li

ID: 3699130 • Letter: I

Question

in python

(35 Points) Write a function madlibs0 that takes in 4 parameters. A list of nouns, a list of verbs a list of adjectives and some text. The text will have NNN for a place to inject a random noun from the list, VVV to inject a random verb from the list and AAA to inject a random adjective from the list. The function will print the text with the values replaced. Here is some sample output. HINT: Break the text up into individual strings. Here are three sample runs of the lists and sentences found in the template. Feel free to edit the lists and make 3. up your own text templates. RESTART: C:/Users/azoko/Desktop The hungry girl ran at the father A guard looked at the dog and then shouted at the hungry guard RESTART: C:/Users/azoko/Desktop/ The hungry donkey sang at the teacher A teacher looked at the dog and then sang at the stunned father RESTART: C:/Users/azoko/Desktop/ The stunned dog flew at the boy A policeman lo?ked at the donkey and then shouted at the silly dog

Explanation / Answer

Program

import random

def nth_repl(s, sub, repl):

    find = s.find(sub)

    i = find != -1

    return s[:find]+repl+s[find + len(sub):]

    return s

def madlibs(nouns, verbs, adjectives, text):

    nn_cnt=text.count('NNN')

    vv_cnt=text.count('VVV')

    aa_cnt=text.count('AAA')

    for i in range(0,nn_cnt):

        nn=random.choice(nouns)

        text=nth_repl(text,"NNN",nn)

    for i in range(0,vv_cnt):

        vv=random.choice(verbs)

        text=nth_repl(text,"VVV",vv)

    for i in range(0,aa_cnt):

        aa=random.choice(adjectives)

        text=nth_repl(text,"AAA",aa)

    print text

    pass

n=['dog', 'boy', 'girl', 'donkey', 'teacher', 'father','policeman','guard']

v=['ran','barfed','sang','barked','shouted','flew']

a=['angry','sad','happy','hungry','silly','stunned','drunk']

sentence='The AAA NNN VVV at the NNN'

madlibs(n,v,a,sentence)

sentence='A NNN looked at the NNN and then VVV at the AAA NNN'

madlibs(n,v,a,sentence)