Appearance
返回一个新列表,排除指定的值。
from usepy import without
lst
*values
>>> without([1, 2, 3, 4, 5], 2, 4) [1, 3, 5]