I'm creating a program which will eventually have like 500 calls for print
function, and some others too. Each of these functions will take the exact same parameters every time, like this:
print(a, end='-', sep='.')
print(b, end='-', sep='.')
print(c, end='-', sep='.')
print(..., end='-', sep='.')
Is there a way to change the default values of print
function's parameters? So that I wouldn't have to type end='-', sep='.'
every time?