The sep Parameter
Control what goes between your values
print("apple", "banana", "cherry")
print("apple", "banana", "cherry", sep=", ")
print("apple", "banana", "cherry", sep=" | ")
print("apple", "banana", "cherry", sep="")
Question: What's the default separator in print()?