Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I have to create your own example of a function that modifies a list passed in as an argument. Describe what your function does in

I have to "create your own example of a function that modifies a list passed in as an argument. Describe what your function does in terms of arguments, parameters, objects, and references." (in PYTHON 3)

So, I want to make a list of "declarations" and then take another list of "exclamations" and cycle thru both lists to attach each element of the "exclamations" list onto each element of the "declarations" list, in order.

I can't figure out how to make it work.

This is what I have:

#create a list of 3 string values and assign it to an object called declarations declarations = ["Cats are cool", "Dogs are awesome", "Birds are radical"] #create a second list exclamations = ["heck yeah!", "ain't that the truth!", "NOT!" ] #modify the declarations list by traversing it sequentially and adding the exclamations list, in order, to the elements in the #declarations list def modify_list(declarations): for i in declarations: while len(exclamations)

modify_list(declarations)

it won't allow me to show my indentations, so here's a pic:

image text in transcribed

That doesn't work, obviously. How can I make it work?

#create a list of 3 string values and assign it to an object called declarations declarations ["Cats are cool", "Dogs are awesome " , "Birds are radical"] #create a second list exclamations["heck yeah!", "ain't that the truth!", "NOT!" #modify the declarations list by traversing it sequentially and adding the exclamations list, in order, to the elements in the declarations list def modify list (declarations) for i in declarations: while len (exclamations) -len (declarations) : for i in exclamations: suffix 0 suffix = suffix + i return sufrix whole-phrase declarations.append(exclamations) print (whole phrase) modify list (declarations)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Database Marketing The New Profit Frontier

Authors: Ed Burnett

1st Edition

0964535629, 978-0964535626

More Books

Students also viewed these Databases questions

Question

What is job enlargement ?

Answered: 1 week ago

Question

what is the most common cause of preterm birth in twin pregnancies?

Answered: 1 week ago

Question

Which diagnostic test is most commonly used to confirm PROM?

Answered: 1 week ago

Question

What is the hallmark clinical feature of a molar pregnancy?

Answered: 1 week ago