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