Python - sep parameter in print()
Python tip:
You can pass as many values to print to the
print()
function as you want. You can also specify a custom separator.print("123", "456", "789") # => 123 456 789 print("123", "456", "789", sep="-") # => 123-456-789