append
Returns a new list with b appended to a.
append(a, b): out1Arguments:
Arguments
| Name | Type | Default | Description |
|---|---|---|---|
| a | list | The input number or list that will come before any appended values in the output list. | |
| b | list | A number or list of numbers to append to the input. |
Returns
| Name | Type | Description |
|---|---|---|
| out1 | list | Outputs a list composed of the input value(s) followed by the appended value(s). |