Compact Array

Remove falsy values (null, false, 0, empty strings) from an array.

Code

General
[x for x in arr if x]

Parameters

Array with falsy values

Server

More Python Snippets