Ad
  • Custom User Avatar

    Hi. You can add a default value for the parameter in the function definition.
    Example: def arr(n=0).
    What that's doing is basically saying "n is equal to the value passed when calling the function. But, if no value is passed, then use 0 instead".