So verwenden Sie eine unbestimmte Anzahl von Args in Python
# use *args to allow user to input as many argumnets as they want
def mean(*args):
return sum(args)/len(args)
Inquisitive Ibis