def citation(names):
author_name = ((names))
name = str(names[2]) + “, ” + str(names[0]) + ” ” + str(names[1])
return name
print(citation([“Martin”, “Luther”, “King, Jr”]))
What will be the output of the code above?
a) King, Jr, Martin Luther
b) Luther Martin King, Jr
c) Martin, Luther King, Jr
d) King, Jr, Luther Martin