Colab

params = {
    "sep" : " @ ",
    "end" : " @\n"
}
args = [1,2,3]

print(*args, **params) # 1 @ 2 @ 3 @

1 @ 2 @ 3 @