append

append(*args)

Append list-like elements together

Parameters

Name Type Description Default
*args List[Hashable] Variable length set of arguments containing each a List ()

Returns

Name Type Description
List a List where the elements are appended together

Examples

>>> from rlike import *
>>> x = [1, 2, 4, 3, 3]
>>> append(x, [10, 11], 101)
[1, 2, 4, 3, 3, 10, 11, 101]