I am new to Python and I would like to know please how can I define a function that takes as much parameters as the user provides. For one parameter my function does the following:
def _more_data_(one_param):
f = open(file,'w')
f.write(str(one_param)+';\n')
return
The function will eventually write all the input data the user provides in a a file names 'file'.