Appearance
将值转换为列表
from usepy import to_list
value
list
>>> to_list([1, 2, 3]) [1, 2, 3] >>> to_list("abc") ['a', 'b', 'c'] >>> to_list(123) [123] >>> to_list((1, 2, 3)) [1, 2, 3]