a, b, c = "spoon", "plate", "glass" print(a)#seperate line print(b)#seperate line print(c)#seperate line print(a,", " +b, ", and " + c + " said hello")#same line 

Read more of this post