Appearance
返回多个列表的并集,去除重复元素。
from usepy import union
*lists
>>> union([1, 2, 3], [2, 3, 4], [3, 4, 5]) [1, 2, 3, 4, 5]