combine#
home: Getting Started
ListTransformer can combine two lists.
import ListTransformer
print(ListTransformer.combine([1, 2, 3], [4, 5, 6, 6]))
print(ListTransformer.combine([1, 2, 3], [4, 5, 6, 6], ListTransformer.Tools.no_same))
Outputs:#
[1, 2, 3, 4, 5, 6, 6] as list
[1, 2, 3, 4, 5, 6] as list