I ask for a user to input names and I need to return them one a time from a list, but what happens is only single letters are returned instead of the full name.
Names = input("Enter names here: ")
The list I get is something like this,
Jim, John, Sarah, Mark
This is what I try,
print (Names[0])
What I get as a return
J
I want Jim as the return a nothing else.