Question: using python 3 Write a function quote_maker(quote, name, year) that returns a sentence, i.e. a string of the following form: In year, a person called

using python 3
Write a function quote_maker(quote, name, year) that returns a sentence, i.e. a string of the following form: In year, a person called name said: quote. See the next Section 2 below for some examples of how your function must behave.
>>> # testing Question 5 quoteEverything should be made as simple as possible but not simpler.", "Albert Einstein", 1933) 'In 1933, a person called Albert Einstein said: "Everything should be made as simple as possible but not simpler."' quotemakerC I would never die for my beliefs because I might be wrong. ", "Bertrand Russell", 1951) In 1951, a person called Bertrand Russell said: "I would never die for my beliefs because I ight be wrong." 953
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
