5 lines
72 B
Python
5 lines
72 B
Python
|
|
import pydash as _
|
||
|
|
|
||
|
|
res = _.compact([1, 2, 3, 0, False, ""])
|
||
|
|
print(res)
|