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 above code?
A) King, Jr, Martin Luther
B) Martin, Luther King, Jr
C) King, Jr, Luther Martin
D) Luther, Martin King, Jr