Appearance
将嵌套的列表展平一层。
from usepy import flatten
lst
>>> flatten([1, [2, 3, [4, 5]], 6]) [1, 2, 3, [4, 5], 6]