In python3 , if I have a list[a,b,c], how can I print the output such as :
results: a
b
c
but my output is like:
results: a
b
c
My code is
List = ['a', 'b', 'c']
print("results :", end = " ")
for i in List:
print(i)
How can I format it?