Codebox Operators append

append

Returns a new list with b appended to a.

append(a, b): out1

Arguments:

Arguments

NameTypeDefaultDescription
alist

The input number or list that will come before any appended values in the output list.

blist

A number or list of numbers to append to the input.

Returns

NameTypeDescription
out1list

Outputs a list composed of the input value(s) followed by the appended value(s).