By default, print() displays multiple objects separated by spaces. Printing with the optional sep parameter specifies what to replace these spaces with.
Solution for How to print with sep in Python : You can use sep to specify separation of strings Call print(*objects, sep=None) to print multiple objects separated by sep. By default, passing multiple strings into print(*objects) separates the strings with a space character.
Use print(*objects, sep=””) to specify how values are separated in the output.
print("a", "b", "c", sep="x")