print arguments of a function python code example
Example: python print function arguments
print('hello to the','World', sep='-', end='\n')
#output: hello to the-World
print('hello to the','World', sep='-', end='\n')
#output: hello to the-World