Just wondering how I can print a list variable containing names, name by name line by line so its one name per line, e.g.:
Luka
Andrew
Jay
Lola
The code I'm usinng:
IndNames=input("""Please enter the names of the 20 individual competitors in this format;
'name,name,name,name,name' etc until you have entered 20 names:
""")
print("Congratulations, here are the individual competitors: " + IndNames)
here is some test data for the names I've been using if you'd like to experiment: Luka,Ted,Arselan,Jack,Wez,Isaac,Neil,Yew,Ian,John,Bruce,Kent,Clark,Dianna,Selena,Gamora,Nebula,Mark,Steven,Gal (I appreciate any and all help, I'm a college student and fairly new to Python)