Comment faire une entrée de fonction en option dans Python
#*args makes it so that you can use any amount of variables
def function(variable1, variable2, *args):
#for example the print function can start with: def print(*args)
Pleasant Pony