Question
The function combine_message below will consume three messages and combine them into one. It is supposed to use the improve_message to also improve the messages
The function combine_message below will consume three messages and combine them into one. It is supposed to use the improve_message to also improve the messages before returning them. Fix the body of the combine_message function so that it correctly calls the improve_message function.
Someone on chegg tried to help but it was incorrect.
def improve_message(a_string): return a_string.replace('dog','doggo')
def combine_message(first,second,third): return improve_message(first) + ' ' + improve_message(second) + ' ' + improve_message(third)
first = 'That dog is cute. ' second = "I want to pet the dog." third = "I will ask the dog's owner." print(combine_message(first,second,third))
Howere the error "No function named combine_messages was found." came up.
From that error I added an s to the end on all the comgine_messages and then got this error: "You should only call improve_message once. If you're not sure how, here's a tip: why improve BEFORE adding?"
Any Ideas what's going wrong/ How to fix it?
Also, Idk why but when I type this question to ask it's not indenting where I want it to.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started